var BlnDone = false;

function setPageVersion(CurrentSiteID,CurrentPageID,CurrentMajor,CurrentMinor, sAppRoot) {
	// Get the Top Frame Object and set the site,page and version info
	var objInPageFrame ;
	try{
		objInPageFrame = top.frames['InPageFrameHeader'];
	} catch (e) {}
	
	if(objInPageFrame != null){
		objInPageFrm = objInPageFrame.document.forms['frmInPgNav']
		theHREF = sAppRoot + "inContext/_admin/CMS_TaskList/support/inPageNav.aspx?site_id=" + CurrentSiteID
		theHREF += "&page_id=" + CurrentPageID
		theHREF += "&major=" + CurrentMajor
		theHREF += "&minor=" + CurrentMinor
		top.frames['InPageFrameHeader'].document.location.href = theHREF;
		BlnDone = true;
	}
}

function OpenPage(vStrURL){
	window.open(vStrURL,'PrintPage', 'width=600,height=500,scrollbars=yes')
}