// popup function
function popUpgalleri(url,name,w,h){
	str="height="+h+",width="+w+",scrollbars=1";
	if(parseInt(navigator.appVersion)>3)
		str+=",left="+(screen.width -w)/2+",top="+parseInt((screen.height -h)/3);
	win=window.open(url,name,str);
}
