﻿/* 
Popup code for Blue and Me page
@updated 07/04/09:  Steve Smith     |   Wrote reusable popup methods (openPopup, openUrlInParent and closePopup) 
										in main.js
                                        All HTML references to the methods in this file
                                        have been amended to use the new reusable methods
                                        THIS FILE CAN BE REMOVED ONCE FLASH REFERENCES HAVE BEEN AMENDED
                                        SEE https://extranet.akqa.com/manage/browse/FIATBAU-92
*/

var bm_popup;

function closeOldBMPop() {
	if ((window.close) && (bm_popup != null)) {
		bm_popup.close();
	}
}

function openBMPop() {
	bm_popup = window.open("/blueandme/request_information.aspx",'bm_popup','location=0,status=0,scrollbars=0,height=426,width=680,resizable=0');
}

