function open_window(link,w,h) //opens new window
{
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes,left=300";
	wishWin = window.open(link,'wishWin',win);
	wishWin.focus();
}
