// JavaScript Document
function openPic(url,winName,winParams)	{	//
	
	
	var theWindow = open(url, winName, winParams);
	if (theWindow)	{theWindow.focus();}
}

