function openwindow(url,name,width,height, scrollbars) 
{ 
	leftpos = (screen.width/2) - (width/2);
	features = "width=" + width + ",height=" + height + ",left=" + leftpos + ",top=200,scrollbars=" + scrollbars;
	window.open(url,name,features);
}






function printNavContent(navitemid)
{
	window.open( "/print/?print=1&navitemid="+navitemid , "printcontent" , "width=1024,height=768,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes");
}

