function birthday(){
	window.open('global_birthday.html','pop','height=70,width=280,location=no,resizable=no,scrollbars=no');
}

function sailings(){
	window.open('path/1.html','pop','height=450,width=735,location=no,resizable=no,scrollbars=yes');
}

function open_flash(url,w,h){
	now=new Date();
	window.open('pop_up.php?url='+url,'popup'+now.getMinutes()+now.getMilliseconds(),'height='+h+',width='+w+'location=no,resizable=no,scrollbars=no');
}

function center_me(w,h){
	if(navigator.appName.indexOf('Explorer')+1){
		var win_width=w;
		var win_height=h;
	} else {
		var win_width=window.outerWidth;
		var win_height=window.outerHeight;
	}
	var pos_x=(screen.width-win_width)/2;
	var pos_y=(screen.height-win_height)/2;
	moveTo(pos_x,pos_y);
}
