function openWindow(popupWindowName,pageURL,width,height,options) {

	opt = 'width='+width+',height='+height+','+options;
	popUp = window.open(pageURL,popupWindowName,opt);
}

