
var ie=navigator.appName.indexOf("Microsoft") != -1;		
// self resize
top.window.moveTo(0,0);
if(ie){
	top.window.resizeTo(screen.availWidth,screen.availHeight);
}else{
  	self.outerHeight=screen.availHeight;
  	self.outerWidth=screen.availWidth;
}


function wopen(WO){
	NewWin=window.open(WO,"kekka","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=450");
	NewWin.location.href=WO;
	NewWin.focus();
}



