﻿// JavaScript Document for ad screen

var showad = true;
var Toppx = 60;
var AdDivW = 100;
var AdDivH = 360;
var PageWidth = 800;
var MinScreenW = 1024;
var ClosebuttonHtmlLeft = '<div align="right" style="position: absolute;top:0px;right:0px;margin:1px;padding:1px;z-index:2000;"><a href="javascript:;" onclick="hideadLeft()" style="color:#333333;text-decoration:none;font-size:10px;"></a></div>'
var ClosebuttonHtmlRight = '<div align="right" style="position: absolute;top:0px;right:0px;margin:1px;padding:1px;z-index:2000;"><a href="javascript:;" onclick="hideadRight()" style="color:#333333;text-decoration:none;font-size:10px;"></a></div>'
var AdContentHtml = '';
document.write ('<div id="javascript.LeftDiv" style="position: absolute;border: 0px solid #ffffff;z-index:1000;width:'+100+'px;height:'+10+'px;top:-1000px;word-break:break-all;display:none;"><div>'+AdContentHtml+'</div></div>');
var AdContentHtml = '<a href="/app/ad_red.asp?adID=000&url=xxx" target="_blank"><img src="/images/online.gif" width="140" height="60" border="0" hspace="0" vspace="0" alt="" /></a><br /><!-- BEGIN ProvideSupport.com Graphics Chat Button Code --><div id="ciEU6l" style="z-index:100;position:absolute"></div><div id="scEU6l" style="display:inline"></div><div id="sdEU6l" style="display:none"></div><script type="text/javascript">var seEU6l=document.createElement("script");seEU6l.type="text/javascript";var seEU6ls=(location.protocol.indexOf("https")==0?"https":"http")+"://image.providesupport.com/js/safe-standard.js?ps_h=EU6l&ps_t="+new Date().getTime();setTimeout("seEU6l.src=seEU6ls;document.getElementById(\'sdEU6l\').appendChild(seEU6l)",1)</script><noscript><div style="display:inline"><a href="http://www.providesupport.com?messenger=haida">Customer Support Chat</a></div></noscript><!-- END ProvideSupport.com Graphics Chat Button Code --><br /><br /><A href="ymsgr:sendIM?yahoo@obdfocus"><img src="/images/msn1.gif" width="57" height="64" border="0" hspace="0" vspace="0" alt="Chat with Wason" /></A><br /><br /><a href="skype:obdfocus?call" target="_blank"><img src="/images/skype.gif" width="57" height="64" border="0" hspace="0" vspace="0" alt="Skype Me!" /></a><br /><br /><a href="msnim:chat?contact=obdfocus@hotmail.com" target="_blank"><img src="/images/msn.gif" width="57" height="64" border="0" hspace="0" vspace="0" alt="Chat with Wason" /></a><br /><br />';
document.write ('<div id="javascript.RightDiv" style="position: absolute;border: 0px solid #ffffff;z-index:1000;width:'+140+'px;height:'+203+'px;top:-1000px;word-break:break-all;display:none;text-align:center;">'+ClosebuttonHtmlRight+'<div>'+AdContentHtml+'</div></div>');
function scall(){
	if(!showad){return;}
	if (window.screen.width<MinScreenW){
		showad = false;
		document.getElementById("javascript.LeftDiv").style.display="none";
		document.getElementById("javascript.RightDiv").style.display="none";
		return;
	}
	var Borderpx = ((window.screen.width-PageWidth)/2-AdDivW)/2;

	document.getElementById("javascript.LeftDiv").style.display="";
	document.getElementById("javascript.LeftDiv").style.top=document.documentElement.scrollTop+Toppx+"px";
	document.getElementById("javascript.LeftDiv").style.left=document.body.scrollLeft+Borderpx-50+"px";
	document.getElementById("javascript.RightDiv").style.display="";
	document.getElementById("javascript.RightDiv").style.top=document.documentElement.scrollTop+Toppx+"px";
	document.getElementById("javascript.RightDiv").style.left=document.body.clientWidth-AdDivW-45+"px";
}

function hideadLeft()
{
	showad = false;
	document.getElementById("javascript.LeftDiv").style.display="none";
}

function hideadRight()
{
	showad = false;
	document.getElementById("javascript.RightDiv").style.display="none";
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
