var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

//UKMRel_9.0 HPOV:566234 :Web Tech Support Team:29/11/2010 :Start
function closePostcodePopup(url, type, strWidth, strHeight){	
	var addrId ="";
	if(document.getElementById('addressForm').addressID != undefined){
		 var addressId = document.getElementById('addressForm').addressID;
		var length =  document.getElementById('addressForm').addressID.length;
		addrId ="";

		if(length == 1 || length == undefined)
			addrId = document.getElementById('addressForm').addressID.value;
		else{
			for(var i=0;i<length;i++){
				if(document.getElementById('addressForm').addressID[i].checked == true){
					addrId = document.getElementById('addressForm').addressID[i].value;
					break;
				}

			}
		}
	}
	window.opener.document.getElementById('yourDetails').postcode.value = window.opener.document.getElementById('yourDetails').postcode.value.toUpperCase();	
   //window.opener.document.forms(0).method.value="confirmPostcode";
	url = url+"&addressID="+addrId;	
	//window.opener.location.href =url ;
	//location.href =url ;
	//window.opener.close();
	window.opener.document.getElementById('yourDetails').action=url;
	window.opener.document.getElementById('yourDetails').submit();
	newWindow = window.close();	
}
// UKMRel_9.0 HPOV:566234 :Web Tech Support Team:29/11/2010 :End
// UKM_Rel_12.0: HPOV : 655253 : Web Tech Support Team : Start
function CloseReload(){
		window.close();
}
//UKM_Rel_12.0: HPOV : 655253 : Web Tech Support Team : End
//Bupa Travel Revamp:Web Tech Support Team: 15/01/2010 Start

//UKMRel_9.0 HPOV:566234 :Web Tech Support Team:29/11/2010 :Start
function closePostcodePopupWindow(url, type, strWidth, strHeight){
	
	var addrId ="";
	url = url+"&addressID="+addrId;	
	window.opener.document.getElementById('yourDetails').action=url;
	window.opener.document.getElementById('yourDetails').submit();
	newWindow = window.close();
	
}
//UKMRel_9.0 HPOV:566234 :Web Tech Support Team:29/11/2010 :End

//Bupa Travel Revamp:Web Tech Support Team: 15/01/2010 End

function popUpWin(url, type, strWidth, strHeight){
	
	closeWin();
	
	if (type == "fullScreen"){
		strWidth = screen.availWidth - 10;
		strHeight = screen.availHeight - 160;
	}
	
	var tools="";
	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=no,location=no,scrollbars=yes,menubar=no,width="+strWidth+",height="+strHeight+",top=0,left=0";
	if (type == "console") tools = "resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

function validatePostcode(postcode,url, type, strWidth, strHeight){
	url = url+"&postcode="+postcode;
	
	popUpWin(url, type, strWidth, strHeight);
	

}

