// JavaScript Document
function showImagePopUp(strImageUrl){
	window.open("image.asp?img="+strImageUrl,"ImagePopUp",'width=200,height=200,location=no,toolbar=no,scrollbars=no,resizable=no,left=100,top=100');
}

function printPage(PageId){
	window.open("base.asp?print=true&pageid=" + PageId);
}

function setFrameHeight(){
	if(document.all){
		document.getElementById("formFrame").height = formFrame.document.getElementById("mainDiv").offsetHeight;
	}else{
		document.getElementById("formFrame").height = formFrame.document.getElementById("mainDiv").offsetHeight + 20;
	}
}