﻿// JavaScript Document
var open_win=function(){
	window.open('attach_photo.aspx','','width=600,height=370,location=no,toolbar=no,status=no,resizable=yes,scrollbars=yes');
}
var getPhotoName=function(name){
	document.getElementById('pic').value=name;
}
var openwin_close=function(){
	var name=document.getElementById('img_name').value;
	window.opener.getPhotoName(name);
	window.close();
}