var status = "open";
function buyme(partno) {
if (status == "open") {
var gomer = ("http://www.goemerchant7.com/index.cgi?ST=buy&Action=add&Merchant=cityseahorseinc&ItemNumber=" + partno);
document.writeln("<BR><BR><CENTER><a ONMOUSEOVER=\"status='Pop-Up an Order Window'; return true\" ONMOUSEOUT=\"status=''; return true\" ONCLICK=\"popupGomer('" + gomer + "','gomer1', 580, 420, 20, 70); return false\" HREF=\"" + gomer + "\"><IMG SRC=\"buttons/Buy_Me.gif\" WIDTH=79 HEIGHT=41 ALT=\"Purchase this Product.\" BORDER=0></a></CENTER>");
}
}

function popupGomer(url, winname, w, h, x, y) {
var options = "width=" + w + ",height=" + h + ",";
options += "resizable=yes,scrollbars=yes,status=yes,";
options += "screenX=" + x + ",screenY=" + y + ",";
options += "left=" + x + ",top=" + y + ",";
options += "menubar=no,toolbar=no,location=yes,directories=no";
var gomerWin = window.open(url, winname, options);
gomerWin.focus();
          }
