var isPop;
var popURL;

function init(){
	isPop = false;
	popURL = "http://www.pharmadl.com";
	
	popwindow();
}

function popwindow() {
	if (isPop) {
		window.open(popURL,null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");	
	}
}


