function popupWin(width, height)
{
	if (!width) width = 300;
	if (!height) height = 200;
	window.open("", "popup", "width="+width+",height="+height);
}