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)
{
    if (navitemid == '' || navitemid == undefined)
	    window.open( "/print/?print=1", "printcontent", "width=1024,height=768,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes");    
    else
	    window.open( "/print/?print=1&navitemid="+navitemid , "printcontent", "width=1024,height=768,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes");
}

function PDFPageContent(navitemid)
{
    if (navitemid == '' || navitemid == undefined)
	    window.open( "/pdf/?thispageonly=true", "pdfcontent", "width=1024,height=768,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes");    
    else
	    window.open( "/pdf/?thispageonly=true&navitemid="+navitemid , "pdfcontent", "width=1024,height=768,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes");
}

function PDFNavContent(navitemid)
{
    if (navitemid == '' || navitemid == undefined)
	    window.open( "/pdf/", "pdfcontent", "width=1024,height=768,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes");    
    else
	    window.open( "/pdf/?navitemid="+navitemid , "pdfcontent", "width=1024,height=768,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes");
}
