function openwindow(w, h) {
	window.open("","liite",	'toolbar=0,location=0,scrollbars=1,width=' + w + ', height=' + h +', resizable=1');
}
function nW(w, h, n) {
	window.open("",n, "toolbar=0,location=0,scrollbars=0,width=" + w + ",height=" + h + ",resizable=0")
}
function nw_url(w, h, n, url) {
	window.open(url,n, "toolbar=0,location=0,scrollbars=0,width=" + w + ",height=" + h + ",resizable=0")
}
