var picWindow

function PopUpPic(pic,wide,high,lines,title) {
	var options="width="+wide+",height="+high+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no";
	var name = "PopUpPic.php?pic="+pic+"&lines="+lines+"&title="+title;
	var newWindow=window.open(name,"newWindow",options);
}

function PopUpPic2(pic,wide,high,lines,title) {
	var options="width="+wide+",height="+high+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no";
	var name = "/background/publications/PopUpPic.php?pic="+pic+"&lines="+lines+"&title="+title;
	var newWindow=window.open(name,"newWindow",options);
}

function bigPicture(name,wide,high) {
	if (name == "flash_window3.htm") {
		var options="width="+wide+",height="+high+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes";
	}
	else {
		var options="width="+wide+",height="+high+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no";
	}
	var newWindow=window.open(name,"newWindow",options);
}

function bigScrollingPicture(name,wide,high) {
	var options="width="+wide+",height="+high+",status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";
	var newWindow=window.open(name,"newWindow",options);
}
