// Begin Tell Your Friend
function tellyourfriend() {
	var referUrl = window.location;
	var mailToValue = "mailto:?body=URL: "+referUrl;
	window.open(mailToValue, 'Visa');
}

// Begin Window Popup
function winpop(url,w,h){
	var winfeatures = "width=" + w + ",height=" + h + ",scrollbars=yes,resizable=no,status=no";
	window.open(url,"",winfeatures);
}
// End Window Popup

// Begin Redirect for Dropdown select
function redirectdropdown(url) {
	var isexternal = false;
	var isdocument = false;

	isexternal = url.match(/http:\/\//);
	isdocument = url.match(/\/includes\/uploads\//);
	if (isexternal || isdocument)
	{
		window.open(url);
	}
	else
	{
		document.location.href = url;
	}
}
// End Redirect for Dropdown select

