var bigWindow

function openWindow(id) {
	var param = 'width=369,height=600,left=0,top=0,resizable=no,scrollbars=no';
	bigWindow = window.open("", "big", param);
	var newContent = "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-9\"><title>ÜÇAS COLLECTION</title><style type=\"text/css\"><!--body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}--></style></head><body><table width=\"369\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><a href=\"javascript:window.close();\" onFocus=\"status='';return true;\" onMouseOver=\"status='';return true;\" onMouseOut=\"status='';return true;\"><img src=\"../images/bigs/" + id + ".jpg\" alt=\"Kapatmak için tıklayın...\" width=\"369\" height=\"600\" border=\"0\"></a></td></tr></table></body></html>";
	bigWindow.document.write(newContent);
	bigWindow.document.close();
	bigWindow.focus();
}

