/* 
MailForm 
*/

/* open the mail form */
function mailform(prodcat, product) {
  document.location = "/common/cgi/mailform.pl?backurl="+document.location+"&prodcat="+prodcat+"&product="+product;
}

/* create a hyperlink to the form */
function mailref(t, prodcat, product) {
  document.write('<a href="javascript:mailform('+"'"+prodcat+"', '"+product+"')"+'">'+t+"</a>");
}

/* 
Download Form 
*/

/* open the download form */
function downloadform(product) {
  document.location = "/common/cgi/download.pl?backurl="+document.location+"&product="+product;
}

/* create a hyperlink to the form */
function downloadref(t, product) {
  document.write('<a href="javascript:mailform('+"'"+product+"')"+'">'+t+"</a>");
}


/*
Picture window
*/
/* Open a file in a new window */
function openpicture(name) {
  p=open(name,"_plaatje","resizable=1")
}

/* create a hyperlink to open the picture */
function openpictureref(t, name) {
  document.write('<a href="javascript:openpicture(' + "'"+name+"'"+')">'+t+"</a>");
}

