function popupWindow(pop,width,height) {
	var w = width;
	var h = height;
	scrl='no';
	window.open(pop,"popup","titlebar=no,menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no,directories=no,copyhistory=no,hotkeys=no,width="+w+",height="+h);
}

function htmlWindow(html,width,height) {
	var w = width;
	var h = height;
	scrl='no';
	window.open(html,"htmlwindow","titlebar=no,menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no,directories=no,copyhistory=no,hotkeys=no,width="+w+",height="+h);
}