
function showIt(popupid) {
  	document.getElementById(""+popupid+"").style.visibility = "hidden";
}

function delete_pub(popupid){
	setTimeout("showIt('"+popupid+"')", 30000); // after 10 sec
}

function pop(url,strWidth,strHeight,strScroll){
 	w = strWidth;
	h = strHeight;
	pw = parseInt((screen.width-w)/2);
	ph = parseInt((screen.height-h)/2);
  	storywin = window.open(''+ url +'','','width='+ strWidth +',height='+ strHeight +',scrollbars='+ strScroll +',resizable=no,screenX='+ pw +',screenY='+ ph +',left='+ pw +',top='+ ph +''); 

 	if (eval('storywin.focus()')) {
	win.moveTo(pw, ph);
	} 
}


