function launchWindow(url,width,height) {
	if (width==0)
		width=628;
	else
		width=Number(width) + 16;

	if (height==0)
		height=468;
	else
		height=Number(height) + 60;

	var w = open(url,
	"photowin", "width=" + width + ",height=" + height + ",resizable");
}
