function popup_out(theURL,wWidth,wHeight) {

	var settings = "status=yes,scrollbars=yes,menubar=yes,resizable=yes,toolbar=yes,location=yes,directory=yes";

	if(!wWidth&&!wHeight){
		window.open(theURL,'',''+settings+'');
	}else if(wWidth&&!wHeight){
		window.open(theURL,'',''+settings+',width='+wWidth+'');
	}else if(!wWidth&&wHeight){
		window.open(theURL,'',''+settings+',height='+wHeight+'');
	}else{
		window.open(theURL,'',''+settings+',width='+wWidth+',height='+wHeight+'');
	}
}
