function funcWinOpen(strTitle, strURL){
	open_window=window.open('catalogue.htm','OE_Catalogue','');
	
	alert(strTitle);
	open_window.frames['header'].location="http://www.oecatalogue.com/header.asp";
	open_window.frames['detail'].location=strURL;
	open_window.frames['footer'].location="http://www.oecatalogue.com/footer.asp";
	open_window.focus();
}
