﻿//Function will launch the mail a friend form in a new window.
//To use, include this js file in the head of the html page
//and then attach an attribute of id="launcher" to whatever element you want to launch the window (link or image etc)

function init(){
	var url = document.getElementById('launcherWin');
	url.onclick = function(){
		window.open('http://dev.exposure.net/innocent/mail/form.asp','formWindow','width=300,height=600,scrollbars=1,resizable=0,status=0,toolbar=0');
	}
	
	var url = document.getElementById('launcherMac');
	url.onclick = function(){
		window.open('http://dev.exposure.net/innocent/mail/form.asp','formWindow','width=300,height=600,scrollbars=1,resizable=0,status=0,toolbar=0');
	}
}
window.onload = init;
