function OpenPicWnd(openURL)
{
        wndname = "picwnd";
		WinHeight = 700;
		WinWidth = 600;
		PicWin = window.open(openURL,wndname,"height="+WinHeight+",width="+WinWidth+",resizeable=no,scrollbars=no,toolbar=no,location=no,status=no");
        PicWin.focus();
}
