function winOpen(name,w,h) {
	if (typeof(newWindow) != 'undefined') { if (!newWindow.closed) newWindow.close();}
	newWindow=open(name,"newWindow","location=no,scrollbars=no,toolbar=no,directories=no,menubar=no,width="+w+",height="+h+"");
}

function winOpen2(name,w,h) {
	if (typeof(newWindow) != 'undefined') { if (!newWindow.closed) newWindow.close();}
	newWindow=open(name,"newWindow","location=no,scrollbars=yes,toolbar=no,directories=no,menubar=no,width="+w+",height="+h+"");
}


