function popup (name,width,height) {
     winLeft = (screen.width-width)/2;
	 winTop = (screen.height-(height))/2;
	 options = "width="+width+",height="+height+", scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no, copyhistory=no, left="+winLeft+", top="+winTop+"";
     call=window.open(name,"_blank",options);
}

function newopen(Aurl,wx,wy) {
	//Internet Exproler ver4 or more
	var isIE4 = (navigator.appVersion.charAt(0) >= "4") && (navigator.appName.charAt(0) == "M");
	
	if ( isIE4 ) {
		wo11=window.open("","","width="+wx+",height="+wy+"");
	}
	else {
		wx = wx + 16;
		wy = wy + 16;
		wo11=window.open("","","width="+wx+",height="+wy+"");
	}

	wo11.document.open();
	wo11.document.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
	wo11.document.writeln("<html>");
	wo11.document.writeln("<head>");
	wo11.document.writeln("<META Http-Equiv=\"Content-Script-Type\" Content=\"text/javascript\">");
	wo11.document.writeln("<title>Dynasty Warriors Русский Фан-Сайт</title>");
	wo11.document.writeln("</head>");

	if ( isIE4 ) {
		wo11.document.writeln("<body STYLE=\"margin:0 0 0 0;\">");
	}
	else {
		wo11.document.writeln("<body>");
	}

	wo11.document.write("<A HREF=\"JavaScript:window.close();\">");

	if ( isIE4 ) {
		wo11.document.write("<IMG STYLE=\"border-width:0 0\" SRC=\"" + Aurl + "\" alt=\"Close this window\">");
	}
	else {
		wo11.document.write("<IMG SRC=\"" + Aurl + "\" alt=\"Close this window\" border=\"0\">");
	}

	wo11.document.writeln("</A>");
	wo11.document.writeln("</body>");
	wo11.document.writeln("</html>");
	wo11.document.close();
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=300,left=340,top=217.5');");
}
