// PHP and site design by www.jayestes.com 
//
// SendLinkPopup
//
// Open's a popup window for sendLinkPopup.php and passes in
// linkPage to be used as a hidden form variable for emailing
//
// linkPage - the link to the page that should be emailed
//
function SendLinkPopup(linkPage)
{
	// the height of the popup window
	var h=300;

	// the width of the popup window
	var w=500;

	// whether you want the scrollbar available - yes|no
	var scroll="no";

	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	window.open("sendLinkPopup.php?linkPage="+linkPage,'linkPopup',settings)
}

