
// popup
function surot_popupF(kel_surot, kel_path) {
	
	var inner_html = "<html><head><title>YEDO Belgeleri</title></head><body topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'><img src='"+ kel_path + kel_surot +"'></body></html>";
	
	sayfa = window.open( "", "surot", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=386,height=536");

	sayfa.document.open();
	sayfa.document.write(inner_html);
	sayfa.document.close();
	
	sayfa.focus();
}