var newwindow;

function BookingInfo(url) {
	newwindow=window.open(url,'name','status=0,resizable=0,width=500,height=500,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}

function ProfileGallery(url) {
	newwindow=window.open(url,'name','status=0,resizable=0,width=500,height=500,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}

function TellFriend(url) {
	newwindow=window.open(url,'name','status=0,resizable=0,width=500,height=500,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}