<!--
//creating by Yildiray ATAS © yildiraynet@msn.com
function acres(Ttitle,icer,w,h) {
var win;
var h, w, x4, y4;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2);
win = window.open('','', 'height='+h+',width='+w+',scrollbars=0,resizable=1,menubar=0,toolbar0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
win.document.write ('<html><head><title>'+Ttitle+'</title>' +
'<META content="text/html; charset=windows-1254" http-equiv=Content-Type>' +
'<link rel="stylesheet" href="css/default.css" type="text/css"></head>'+
'<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' +
'<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100">'+
'<tr>'+
'<td><a href="javascript:parent.close();"><img src="'+icer+'" border="0" alt="pencereyi kapatmak için resme tıklayınız."></a></td>'+
'</tr>'+
'</table>'+
'</body>' +
'</html>');
	
}
function achtml(icer,w,h) {
var win;
var h, w, x4, y4;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2);
window.open(icer,'', 'height='+h+',width='+w+',scrollbars=0,resizable=1,menubar=0,toolbar0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
}



var key = new Array();  // Define key launcher pages here
key['y'] = "center.htm";

function getKey(keyStroke) {
isNetscape=(document.layers);
eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
which = String.fromCharCode(eventChooser).toLowerCase();
for (var i in key) if (which == i) window.location = key[i];
}

document.onkeypress = getKey;

//-->