function Show_Window(freshurl, w, h) 
{ 
	if (freshurl == "") return; // set the options as you like 
	winleft = (screen.width - w - 22)/2; 
	wintop = (screen.height - h)/2 - 50; 
	//SmallWin = window.open("",'InfoWindow','scrollbars,resizable=no,height=1,width=1,top=' +wintop+ ',left=' +winleft+ ',margin=0');
	if(typeof(SmallWin)!="undefined")
	{
		SmallWin.close();
	}
	SmallWin = window.open(freshurl, 'InfoWindow','scrollbars,resizable=no,height=' +h+ ',width=' +w+',top=' +wintop+ ',left=' +winleft+ ', margin=0');
	//SmallWin.resizeto(w,h);
	SmallWin.focus() 
}

function Show_Window2(freshurl, w, h) 
{ 
	if (freshurl == "") return; // set the options as you like 
	winleft = (screen.width - w - 22)/2; 
	wintop = (screen.height - h)/2 - 50; 
	if(typeof(SmallWin2)!="undefined")
	{
		SmallWin2.close();
	}
	SmallWin2 = window.open(freshurl, 'FotoWindow','scrollbars,resizable=no,height=' +h+ ',width=' +w+',top=' +wintop+ ',left=' +winleft+ ', margin=0');
	//SmallWin.resizeto(w,h);
	SmallWin2.focus() 
}