function setbgover( obj )
{
	obj.style.backgroundColor="#EBEBD6";
}
function setbgout( obj )
{
	obj.style.backgroundColor="";
}

function timeleft()
{
	var cmonth = 9; 
	var cday = 21;
	var myDate = new Date();
	var mleft = cmonth - myDate.getMonth();
	var dleft = cday - myDate.getDate();
	var cDate = new Date( 2005 , 10 , 17 );
	var daysLeft = Math.ceil( ( cDate - myDate ) / ( 24 * 60 * 60000 ) );
	//document.write( "<br/><div class='timeleft' align='center'><em>&nbsp;Time until the conference:<br>&nbsp;<b>"+daysLeft+" days</b></em></div>" );

}

function cpopUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=0,width=700,height=400,left = "+(screen.width/2-350)+",top ="+(screen.height/2-200)+"');");
}