//======================
//	CONVERSION TABLES	
//======================
function PopupConversion(){
	window.open('/conversion.aspx?type=area','PopupConversion', 'toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,status=yes,height=500,width=550');
}

//======================
//	SEND TO FRIEND	
//======================
function SendToFriend(Property){
	window.open('/sendtofriend.aspx?property=' + Property,'PopupConversion', 'toolbar=no,menubar=no,scrollbars=no,resizable=no,status=no,height=250,width=500');
}

//======================
//	CONFIRM DELETE	
//======================
function ConfirmDelete(Message,URL){
	if(confirm(Message)){
		window.location.href=URL;
		window.navigate(URL);
	}
}

//======================
//	CONFIRM DELETE	
//======================
function ConDel(Message){
	if(confirm(Message)){
		return true;
	}else{
		return false;
	}
}