function bigimg1(content,img)
{
   
    editor1=window.open("","smvs","height=400,width=480,left=0,top=0")
    
 if(editor1 != null)
{
editor1.focus()
editor1.document.open('text/html')
editor1.document.write("<html><head></head>")
editor1.document.write("<body >")
editor1.document.write("<center>")
editor1.document.write('<img src='+img+'  border=0 >')
editor1.document.write('<br>')
editor1.document.write('<font face=arial size=2>')
editor1.document.write(content)
editor1.document.write('</font>')
editor1.document.write('<form>')
editor1.document.write('<input type="button" value=Close onClick="window.close()">')
editor1.document.write('</form>')
editor1.document.write("</center>")
editor1.document.write("</body></html>")
editor1.document.close()  
}
}
function bigimg2(content,img)
{
   
    editor1=window.open("","smvs","height=500,width=400,left=0,top=0")
    
 if(editor1 != null)
{
editor1.focus()
editor1.document.open('text/html')
editor1.document.write("<html><head></head>")
editor1.document.write("<body >")
editor1.document.write("<center>")
editor1.document.write('<img src='+img+'  border=0 >')
editor1.document.write('<br>')
editor1.document.write('<font face=arial size=2>')
editor1.document.write(content)
editor1.document.write('</font>')
editor1.document.write('<form>')
editor1.document.write('<input type="button" value=Close onClick="window.close()">')
editor1.document.write('</form>')
editor1.document.write("</center>")
editor1.document.write("</body></html>")
editor1.document.close()  
}
}

function bigimg3(content,im,wd,ht)
{
   
    editor1=window.open("","smvs","width=" + wd + ",height=" + ht +",left=0,top=0,scrollbars")
    
 	if(editor1 != null)
	{
		editor1.focus()
		editor1.document.open('text/html')
		editor1.document.write("<html><head></head>")
		editor1.document.write("<body >")
		editor1.document.write("<center>")
		editor1.document.write('<img src='+im+'  border=0 >')
		editor1.document.write('<br>')
		editor1.document.write('<font face=arial size=2>')
		editor1.document.write(content)
		editor1.document.write('</font>')
		editor1.document.write('<form>')
		editor1.document.write('<input type="button" value=Close onClick="window.close()">')
		editor1.document.write('</form>')
		editor1.document.write("</center>")
		editor1.document.write("</body></html>")
		editor1.document.close()  
	}
}

