// JavaScript Document
function simple_popup(mypage, w, h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var random = Math.floor(50000 * Math.random());
	var win = window.open(mypage, random, 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,notresizable');
}