<!--
var date2 = new Date()
var hourss = date2.getHours()
var day = date2.getDate() // day 1 - 31 representing day of a month
var month  = date2.getMonth()+1 // month 1 - 12 representing month of a year
var year  = date2.getFullYear()


function open_win(str,name,height,left)
{
window.open(str,name,'width=200,height='+height+',left='+left+',top=50,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no');
}
var popup_left = 20;

//if (year==2007  && month == 4  && day < 25 ) {
//	open_win('popup.html','newstock',300,popup_left);popup_left += 210;
//}

//-->