﻿function pencere(name, url, width, height, resizable, scrollbars, titlebar)
{
	var mcx = null;
	mcx=window.open(url, name ,'width=' + width + ',height=' + height + ',status=no,toolbar=no,menubar=no,directories=no,location=no,resizable=' + resizable + ',scrollbars=' +  scrollbars + ',titlebar=' + titlebar + ',alwaysRaised=yes,screenX=0,screenY=0,left=75,top=100');
	mcx.focus();
}
function pencereTavsiye(id)
{
	var mcxUrun = null;
	mcxUrun = window.open('tavsiye.aspx?id=' + id, 'Tavsiye' ,'width=500,height=250,status=no,toolbar=noyes,menubar=no,directories=no,location=no,resizable=no,scrollbars=yes,titlebar=yes,alwaysRaised=yes,screenX=0,screenY=0,left=75,top=100');
	mcxUrun.focus();
}
