if (top.location!=this.location) {top.location=this.location}

// 800*600 Kontrolü
if (screen.width<800) {
	alert ("UYARI!!"+('\n')+"Ekran çözünürlüğünüz "+screen.width+" * "+screen.height+"."+('\n')+"Bu siteyi doğru görüntüleyebilmek için ekran çözünürlüğünüzün minimum 800 * 600 olması gerek.")
	}
else
boyutla()


function boyutla(){
var ie_h = 350;
var ie_w = 800;
var ns_h = 350;
var ns_w = 788;
var act = navigator.appName;
var xy = navigator.appVersion;
xz = xy.substring(0,4);
if ((act == "Netscape") && (xz >= 4))
    {
	n_t = (screen.width) ? (screen.width - ns_w)/2 : 0;
	n_l = (screen.height) ? (screen.height - ns_h)/2 : 0;

    self.moveTo (n_t,n_l) 
    self.resizeTo (ns_w,ns_h)
    }
if ((act == "Microsoft Internet Explorer") && (xz >= 4))
    {
	i_t = (screen.width) ? (screen.width - ie_w)/2 : 0;
	i_l = (screen.height) ? (screen.height - ie_h)/2 : 0;

    self.moveTo (i_t,i_l) 
    self.resizeTo (ie_w,ie_h)
    
	}
}

