
var cache=[];
window.onload=function()
{
	if(cache['body']==null)
	{
		cache['body']=document.getElementsByTagName("body")[0];
		cache['bodyTHML']=cache['body'].innerHTML;
		cache['content']=document.getElementById("cruiseCalendar").innerHTML;
	}
}
js_print=function()
{
	if(arguments[0])
	{
		//cache['body'].innerHTML="<div style=\"text-align:right;\">打印时间:"+new Date().toLocaleString()+"&nbsp;<span onclick=\"window.print();\" style=\"cursor:pointer;\">打印</span>&nbsp;<span style=\"cursor:pointer;\" onclick=\"js_print(0);\">返回</span></div>"+cache['content'];
	//	$("head").append("<link href=\"../css/cruiseCalendar1.css\" rel=\"stylesheet\" type=\"text/css\">");
		cache['body'].innerHTML="<div ondblclick='js_print(0);' class='Cruise_center' ><div class=Cruises_tel>"+cache['content']+"</div></div>";
	}
	else
	{
		cache['body'].innerHTML=cache['bodyTHML'];
	}
}


