
function showdiv(ID) {

	var DIV = document.getElementById(ID);
	var display = DIV.style.display;
	DIV.style.display = (display == "block") ? "none" : "block";
	
}

function GID(id){

	return document.getElementById(id);

}

function CustomPopup(link,w,h){

	/*GID('popup').style.zIndex=1000000;*/

	GID('popup').innerHTML='';

	if( GID('loghi') )

		hide('loghi');

	h=h-25;

	GID('popup').style.width=w+"px";

	GID('popup').style.height=h+"px";

	GID('popup').style.top="400px";

	GID('popup').style.left=(screen.width/2-w/2)+"px";

	GID('popup').style.display="block";

	getURL(link,"popup");

}

function CloseCustomPopup(){
	GID('popup').style.display="none";
}