// JavaScript Document

function openWindow(fileName, windowName, windowCaption, windowHeight, windowWidth){

	var w = window.open(fileName,windowName,"height="+windowHeight+",width="+windowWidth+"status=0,toolbar=0,location=0,menubar=0");
	if(!w) alert('Please enable popups to view ' + windowCaption);


}