<!--
// JavaScript Document
function confirmDelete(delUrl) {
  if (confirm("Are you sure you want to delete?")) {
    document.location = delUrl;
  }
}


function go(loc) { 
	window.location.href = loc; 
} 

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=640,height=480,left = 320,top = 272');");
}

function ResizeIFrame(obj)
{
	if(obj.contentDocument){
		obj.height = obj.contentDocument.documentElement.offsetHeight;
	}else if(obj.document.body){
		//alert(obj.document.documentElement.clientHeight);
		obj.height = 0;
		obj.height = obj.document.documentElement.offsetHeight + 300;
	}
	//alert(obj.document.documentElement.offsetHeight + " - " + obj.document.body.offsetHeight);
}


//-->