﻿// JavaScript Document
function view(iName,iWidth,iHeight){
	if(iName == ""){return; }
	if(iWidth == ""){ return; }
	if(iHeight == ""){ return; }
	
	iLeft = (screen.width/2) - (iWidth/2)
	iTop = (screen.height/2) - (iHeight/2)
	
	iHTML = "<HTML><HEAD><TITLE>AKIS Denizcilik Nakliyat Turizm ve Ticret A.S.</TITLE></HEAD><BODY leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 oncontextmenu='return false;' onClose='opener.focus()'><IMG src='/pictures/large/"+ iName +".jpg'  vspace=0></BODY>"
	iPage = window.open("","","width="+ iWidth +", height="+ iHeight +", left = "+ iLeft +", top = "+ iTop +", scrollbars=no")
	iPage.document.write(iHTML)
	iPage.focus()
}