var newwindow;
function pencere(url,w,h)
{
	newwindow=window.open(url,'name','height='+ h +',width='+ w +'');
	if (window.focus) {newwindow.focus()}
}

