function CallPopup(whichPop,wide,high) {
/***********************************/
/**** SET URL, WIDTH, AND HEIGHT ***/
	windowURL = whichPop;
	windowWidth  = wide;
	windowHeight = high;	//700;
/***********************************/

	//SET FEATURES AND OPEN POPUP
	windowName = 'POPUP';
	windowFeatures = 'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=1,screenX=100,left=100,screenY=50,top=50';
	window.open( windowURL, windowName, windowFeatures ); 
}

