function hyperlink(imgsrc){
var mstr = "\n"
mstr += "<HTML>\n"
mstr += "<HEAD>\n"
mstr += "<TITLE> ARLINGTON FLORIST - Large View of Image</TITLE>\n"
mstr += "</HEAD> \n"
mstr += "<BODY BACKGROUND=\"bgrose.jpg\">\n"
mstr += "<CENTER>"
mstr += "<Form>"
mstr += "<INPUT TYPE=\"Button\" VALUE=\"GO BACK\"  onClick=\"history.go(-1)\">\n"
mstr += "<INPUT TYPE=\"Button\" VALUE=\"ORDER THIS ITEM NOW\" \n"
mstr += "onClick=\"location.href=\'orderform\/form.asp?selected="+imgName[imgsrc]+"&cat="+selectImg[0]+"&price="+imgPrice[imgsrc]+"'\">\n<br><br>"
mstr += "<IMG SRC=images/" + imgJPG[imgsrc] + "L.jpg BORDER=2><BR>\n"
mstr += "<H4>" + imgName[imgsrc] + "</H4>\n"
mstr += "<BR><b>U.S.  $" + imgPrice[imgsrc] + "</B>\n"
mstr += "<TABLE WIDTH=400><TR><TD>" + imgDescript[imgsrc] + "</TD></TR></TABLE>\n"
mstr += "<Form>"
mstr += "<INPUT TYPE=\"Button\" VALUE=\"ORDER THIS ITEM NOW\" \n"
mstr += "onClick=\"location.href=\'orderform\/form.asp?selected="+imgName[imgsrc]+"&cat="+selectImg[0]+"&price="+imgPrice[imgsrc]+"'\">\n"
//mstr += "<a href=\'orderform\/form.asp?selected="+imgName[imgsrc]+"&cat="+selectImg[0]+"&price="+imgPrice[imgsrc]+"'>click</A>\n"
mstr += "</Form>\n"

mstr += "</CENTER>\n"
mstr += "</BODY>\n"
mstr += "</HTML>\n"
document.open
document.write(mstr)
document.close
window.status = " "
}
