function Pop800x600(url){
	newwindow = window.open(url,'POP','height=600,width=800,resizable=yes,scrollbars=1');
	if (newwindow.focus) {
	  newwindow.focus()
	}
}

function Pop650x600(url){
	newwindow = window.open(url,'POP','height=600,width=650,resizable=yes,scrollbars=1');
	if (newwindow.focus) {
	  newwindow.focus()
	}
}

function PopHTML(url){
debugger;
	newwindow = window.open(url,'POP','height=500,width=419,scrollbars=1');
	if (newwindow.focus) {
	  newwindow.focus()
	}
}

function PopLeave(url){
	newwindow = window.open(url,'Leave','height=600,width=830,toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no');
	if (newwindow.focus) {
	  newwindow.focus()
	}
}


function Show(nodeName){
	var ele = document.getElementById(nodeName);
	if (ele){
		ele.style.display = "block";
	}
}

function Hide(nodeName){
	var ele = document.getElementById(nodeName)
	if (ele){
		ele.style.display = "none";
	}
}
