
function launchWindow (url, name, width, height) {
	var x = 0;
	var y = 0;
	if (navigator.appVersion.length > 0 && navigator.appVersion.charAt(0) > '3' && navigator.appVersion.charAt(0) <= '9') {
		if(width > screen.availWidth - 12) {
			width = screen.availWidth - 12;
		}
		if(height > screen.availHeight - 48) {
			height = screen.availHeight - 48;
		}
		x = (screen.availWidth - 12 - width) / 2;
		y = (screen.availHeight - 48 - height) / 2;
	}
	var params =  "status=0,scrollbars=0,resizable=0,screenX=" + x + ",screenY=" + y + ",width=" + width + ",height=" + height + ")";
	var windowvar = window.open(url, name, params);
}

function send() {
	 window.open('http://sendtofriend.espn.go.com/sendtofriend/SendToFriend?URL=http://sports.espn.go.com/espn/eticket/story?page=wooden&id=2186572&title=ETicket:%20Forever%20Coach','sendtofriend','noresizable,noscrollbars,width=345,height=470');
}