function OpenWin( strURL ){
    var screen_width = screen.availWidth - 10;
    var screen_height = screen.availHeight - 30;
    strFeatures = "screenX=0,screenY=0,width=" + screen_width + ",height=" + screen_height +",";
    strFeatures += "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";

    windowname=window.open( strURL, "", strFeatures );
    windowname.focus();
}

function showHelp()
{
	var helpWin = window.open("http://www4.d-pam.com/fileRoot/fp/2/2/220328/DigitalAlbumRoot/050712143639/help3.html", "help1", "width=560, height=590, left=5, top=72 scrollbars=yes, scrolling=yes");
	//	if (helpWin != null)	helpWin.focus();
}