// Provided by Barzi eCommerce - Maziar Barzi


//  ********************************************************************
//  ********************************************************************
//  Open Window
function PhotoWin(pageURL,PageTitle)
{
	Ws = 450
	Hs = 338
	
	wnd_x=(screen.availWidth/2)-(Ws/2);
	wnd_y=(screen.availHeight/2)-(Hs/2);

	conf =  'width='+Ws+',height='+Hs
	conf += ',left='+wnd_x+',top='+wnd_y
	conf += ',location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no'
	poop =  window.open ('','AboutUs',conf)	

	with (poop)
	{
		document.open();
		document.write('<Title>'+PageTitle+'</Title>');
		document.write('<meta name=\"keywords\" content=\"'+PageTitle+'\">');
		document.write('<meta http-equiv=\"imagetoolbar\" content=\"no\">');
			document.write('<body oncontextmenu=\"return true\" ondragstart=\"return false\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" scroll=\"no\" bgcolor=\"#FFFFFF\">');
			document.write('<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0" name="tbl_loading" id="tbl_loading"><tr align="center" valign="middle">');
		document.write('	<td align="center" valign="middle" style="background-image: url(\'images/Loading/ProgressIndicator.gif\'); background-repeat: no-repeat; background-position: center">');
		document.write('<img id="img_big" align="center" valign="middle" src="'+pageURL+'" border="0"></td></tr></table>');
		document.close();
	}

	poop.focus();
}

