﻿// JavaScript Document
	function yenipencere(url, name, w, h)
	{
	w += 32;
	h += 96;
	 var win = window.open(url,  name,  'width=' + w + ', height=' + h + ', addressbar=no, location=no, menubar=no, status=1, toolbar=no, scrollbars=1, resizable=yes, top=20, left=20');
	 win.resizeTo(w, h);
	 win.focus();
	}
