
function popup(url, width, height){
	var date = new Date();
	var name = date.getTime();
	width += 30; height += 20;
	window.open(url, name, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height);
}

