d=document;
c=1;
function getObj(name){
	return d.getElementById?d.getElementById(name):d.all(name)
}
function addBrowseField(id,div_c){
	e = getObj(id);
	c++;
	new_form_code="<input type='file' name='pics_"+c+"' size='45'><br>";		
	e.innerHTML=e.innerHTML+new_form_code;
}
function OpenWin(w,h,f)
{
	var w = window.open(f,'','width=' + w +',height=' + h + ',toolbar=0,location=0,directories=0,status=0,title=0,border=0,menuBar=0,scrollBars=auto,resizable=1' );
}

