//-----------------------------------------------------------------------------
function section_over(src)
{
	src.bgColor="#F5FF99";
}
//-----------------------------------------------------------------------------
function section_out(src)
{
	src.bgColor="#F7E26F";
}
//-----------------------------------------------------------------------------
function section_click(src)
{
	if(src.children!=null)
	//For IE browser
	src.children.tags('A')[0].click();
	else {
		//for FF browser
		window.location = src.firstChild;
	}
}
//-----------------------------------------------------------------------------
function place_cursor()
{
	try {
		if (document.forms[0] && document.forms[0][0])	document.forms[0][0].focus();
	} catch(err) {}
}
//-----------------------------------------------------------------------------

function image_preview(url,width_image,height_image)
{
	demobetroom = window.open(url, "Image_Preview", "scrollbars=no,menubar=no,resizable=0,location=no,width="+width_image+",height="+height_image);
	demobetroom.focus() ;
}