var BOOKMARK_WIDTH = "380";
var BOOKMARK_HEIGHT = "400";

function callPopUp(title)
{
	var windowLocation;
	var windowHeight;
	var windowWidth;
	windowLocation = "http://www.addthis.com/bookmark.php?v=250&pub=vzwsendahymn&url=http://www.sendahymn.com&title="+title;
	windowHeight = BOOKMARK_HEIGHT;
	windowWidth = BOOKMARK_WIDTH;
	window.open(windowLocation, "SendAHymn", "width="+windowWidth+",height="+windowHeight + ",status=0,toolbar=0,menubar=0,resizable=0,scrollbars=0,location=0");
}

function detectWindowSize(){
	var windowWidth = 0;
	var windowHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		windowWidth = window.innerWidth;
		windowHeight = window.innerHeight;
	}else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		windowWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	}else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
	}
	return windowHeight;
}