function photo_open(path) {
	if (path.charAt(0) != "/") path = "/production/"+path;
	if (path.charAt(1) != "d") window.open(path, "", "toolbar=0,width=800,height=600");
	
}

function onw(path,title)
{
  var new_win = null;
new_win=window.open("","","toolbar=0,scrollbars=0,location=0,status=0,resizable=0,width=800,height=600,top=0,left=0");
  new_win.document.write("<html><head><title>\"MetalPromExport\" Co. Ltd. - "+title+"</title></head><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><a href='javascript:window.close();'><img id='img' src='"+path+"' alt='"+title+"' border='0' onload='window.resizeBy(document.getElementById(\"img\").width-document.body.clientWidth,document.getElementById(\"img\").height-document.body.clientHeight);  window.moveTo((screen.availWidth - document.body.clientWidth)/2,(screen.availHeight - document.body.clientHeight)/2);'></a></body></html>");
  new_win.document.close();
}
