// JavaScript Document

function getTimeForURL(){
	var dt = new Date();
	var strOutput = "";
	strOutput = dt.getHours() + "_" + dt.getMinutes() + "_" + dt.getSeconds() + "_" + dt.getMilliseconds();
	return strOutput;
}

function chgTRbgcolor(Obj, mouseType)
{	
	if (mouseType == 1)
		Obj.style.backgroundColor  ='#D4E1E5';
	else
		Obj.style.backgroundColor  ='';
}


function chgCellClass(Obj, mouseType)
{
	if (mouseType == 1) // mouse over
	{
			//Obj.className  ='box_text_number_mover';
			Obj.style.backgroundColor  ='#95ABC0';
			//Obj.style.color = '#ffffff';
	}
	else // mouse out
	{
			//Obj.className  ='box_text_number';
			Obj.style.backgroundColor  ='';
			//Obj.style.color = '#333333';
	}
}
/* added by Tariq shraim for print the charts tabs on 2010-09-02 */
function print_charts(lang){
	var url = '../front_tabs/print_charts.php?d_id=' + d_id + '&LANG=' + lang  ;

	$(".pobup").each(function () {
	if (this.checked == true )
		url += '&'+this.name+'='+this.value;   
	});

	window.open(url,'print','width=1000,height=600,scrollbars=yes,resizable=yes,menubar=no,modal=yes');
}

