function popup(argUrl) {
	var newwnd = window.open(argUrl, "", "width=570,height=550,scrollbars=yes,resizable=no,toolbar=0");
	newwnd.focus();
	return;
}

function popup3(argUrl) {
	var newwnd = window.open(argUrl, "", "width=600,height=600,scrollbars=yes,resizable=no,toolbar=0");
	newwnd.focus();
	return;
}

function popup4(argUrl) {
	var newwnd = window.open(argUrl, "", "width=750,height=700,scrollbars=yes,resizable=no,toolbar=0");
	newwnd.focus();
	return;
}

function popup2(argUrl) {
	var newwnd = window.open(argUrl, "", "width=700,height=700,scrollbars=yes,resizable=no,toolbar=0");
	newwnd.focus();
	return;
}

function popup5(argUrl , w , h) {
	var newwnd = window.open(argUrl, "", "width=" + w + ",height=" + h + ",scrollbars=yes,resizable=no,toolbar=0");
	newwnd.focus();
	return;
}

function closepage(){
	window.close();
	return;
}

	function ImageDisplay(url){

		newPic = new Image();
		newPic.src = url;

		var w = newPic.width + 40;
		var h = newPic.height + 43;

		sealWin=window.open(url,"win",'toolbar=0,directories=0,status=0,menubar=0, scrollbars=0,resizable=1,width=' + w + ',height=' + h );

		self.name = "mainWin"; 

	}


