function popupWindow(myurl, myheight, mywidth, mywindowID) {
 if(window.open){
	 window.open(myurl,mywindowID,'alwaysRaised=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=' + mywidth
	 + ',height=' + myheight
	 + ',screenX=150,screenY=150,top=150,left=150');
	 return false;
 	}else{
 		return true;
 	}
}

function popOutWindow(myurl,mywindowID) {
 if(window.open){
	 window.open(myurl,mywindowID,'alwaysRaised=yes,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,'
	+ 'width=500,'
	 + 'height=300,'
	 + 'screenX=500,screenY=200,top=200,left=400');
	 return false;
 	}else{
 		return true;
 	}
}
