function center_me(){
	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);
}
var win_height='100%';
var win_width='100%';

if((navigator.appVersion.indexOf('Mac')!=(-1))||(navigator.appVersion.indexOf('PPC')!=(-1))){
	window.open('mac.html','mac_sux','height=100,width=100,scrollbar=no,toolbar=no,location=no,status=no');
}

if(navigator.appName.indexOf('Explorer')==(-1)){
	if(window.innerWidth!=undefined){
		win_height= window.innerHeight-4;
		win_width= window.innerWidth;
	}
}
