//document

var showAd = false;
var now  = new Date();
var p_Year =  now.getFullYear();
var p_Month  = now.getMonth();
var p_Day = now.getDate();

var FebruaryArray = new Array(10,11,12,13,18,19,20,24,25,26,27);
var SeptemberArray = new Array(15,17,22,24);
var OctoberArray = new Array(6,7,13,14,20,21,27,28);
var NovemberArray = new Array(4,5,11,12,18,19,25,26);
var DecemberArray = new Array(1,2,8,9,15,16,22,23,29,30);
function checkshowAd(m_Year, m_Month, m_array)
{
	var p_showAd = false;
	if ( p_Year == m_Year)
	{	
	 if (p_Month == m_Month)
	  {
	    var sa = m_array.length;
	    var i = 0;
	  	for ( i = 0 ; i < m_array.length; i++)
	  	{
			 if ( m_array[i] == p_Day)
			 {
	              p_showAd = true;	
			 }
	  	}
	  }
	}
	return p_showAd;
} 
//function checkshowAdDateRange(p_startDate, p_endDate)
//{
//var p_showAd = false;
//}
//showAd = checkshowAd(2008,8,SeptemberArray);
showAd = false;
//if ( showAd == false)
//{
//	showAd = checkshowAd(2008,9,OctoberArray);
//}
//if ( showAd == false)
//{
//	showAd = checkshowAd(2008,10,NovemberArray);
//}
//if ( showAd == false)
//{
//	showAd = checkshowAd(2009,1,FebruaryArray);
//}
if (showAd)
{
	var o_width = 202;
	var o_height = 150;
	var p_top =  document.documentElement.clientHeight - o_height;
	var p_left =  document.documentElement.clientWidth -  o_width;
    document.writeln("<div id=\"msn\" style=\" Z-INDEX:9999933; LEFT:" + p_left + "px;  WIDTH:" + o_width + "px;  POSITION:absolute; TOP:" + p_top + "px; HEIGHT:" + o_height + "px;\">");
    document.writeln("<div id=\"close\" style=\" display:inline; padding:4px 8px; font-size:12px; font:\'ËÎÌå\';background:#000000; color:#FFFFFF; position:absolute; top:-20px; right:10px; cursor:pointer\"><a href=\"javascript:closeDiv();\">Close</a><\/div> ");
    document.writeln("<table width=\"100%\" height=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"  >");
    document.writeln("<tr><td   height=\"100%\">");
    document.writeln("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='" + o_width + "' height='" + o_height + "'><param name='movie' value='http://www.sznews.com/top/adv/hero_270_200_fu.swf'/><param name='quality' value='high'/><embed src='http://www.sznews.com/top/adv/hero_270_200_fu.swf' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='" + o_width  + "' height='" + o_height + "'></embed></object><\/td><\/tr><\/table><\/div>");
    moveR();
    function moveR() {
        msn.style.top = document.documentElement.scrollTop + document.documentElement.clientHeight - o_height;
        msn.style.left = document.documentElement.scrollLeft + document.documentElement.clientWidth - o_width;
        setTimeout("moveR();", 80);
    }
    function closeDiv() {
        msn.style.visibility = 'hidden';
    }
    var mytime=setTimeout("closeDiv();",25000);
}

