function redir(url) {
	window.open(url,"_self");
}

function viewPicture(pictureWebPath, width, height) {
	viewFile("picture.php?pictureWebPath="+pictureWebPath,'_blank',width + 30,height + 20);
	return false;
}

function viewFile(filePath,pageName,width,height,xIndent,yIndent)
{
	var screenX = (typeof(xIndent) != "undefined") ? xIndent : 100;
	var screenY = (typeof(yIndent) != "undefined") ? yIndent : 100;		

    var options = "scrollbars=yes,screenX="+screenX+",screenY="+screenY+",menubar=no,personalbar=no,resizable=yes,width="+width+",height="+height;
    var hr = window.open(filePath,pageName,options);
        hr.focus();
}

function printActualPage() {
	var actLoc = "" + window.location;
	var printParam = "print=1";
	var noParams = (actLoc.substr(actLoc.length - 3, actLoc.length) == "php")
	var newLoc = actLoc +  ((noParams) ? "?" : "&" ) + printParam;
	
	window.open(newLoc,'_blank');
	return false;	
}