function calculatePrice(catalogID, recordID, recordView) {
	eval("RemoteWindow = window.open('CalculatePricePopUp.jsp?recordView=' + recordView + '&catalogID=' + catalogID + '&recordID=' + recordID + '&start=true', 'CalculatePrice', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=650,height=600,left=50,top=50');");
}

function openNewWindow(URL) {
	eval("Open = window.open(URL , 'PopUpWindow', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=580,height=550,left=50,top=50');");
}

function loadInParent(url, closeSelf){
	window.opener.location = url;
	if(closeSelf) window.close();
}