/**************************************************************
File Name:	referfriend.js
Author:		Michael J.
Purpose:	JavaScript function to pop up window.
**************************************************************/
function referfriend()
{
	// grabs the URL of referring window.
	var refer = window.location;
	// formats the url with the referring url as a url param called 'target'

	var targeturl = 'tell_a_friend.php?target=\'' + refer + '\'';
	// open the window
	window.open(targeturl,"Tellafriend",'menubars=no,toolbars=no,status=no,scrollbars=no,width=430,height=530,left=115,top=40');
}


