function open_beergame()
{
	winWidth = 400; // sets a default width for browsers who do not understand screen.width below
	winheight = 400; // ditto for height

	if (screen.availwidth > 1025){ // weeds out older browsers who do not understand screen.width/screen.height
	   winWidth = 925;
	   winHeight = 675;
	   popupWindow('beer_game.html');
	}
	else if (screen.availwidth < 801){ // weeds out older browsers who do not understand screen.width/screen.height
	   winWidth = 550;
	   winHeight = 400;
	   popupWindow('beer_game.html');
	}
	else { // weeds out older browsers who do not understand screen.width/screen.height
	   winWidth = 660;
	   winHeight = 480;
	   popupWindow('beer_game.html');
	}
}

function open_more(id)
{
	winWidth = 715;
	winHeight = 360;
	switch(id)
	{
		case 'jetsplash':
			popupWindow('portfolio_details_jetsplash.aspx');
			break;
		case 'marasco':
			popupWindow('portfolio_details_marasco.aspx');
			break;
		case 'sandlot':
			popupWindow('portfolio_details_sandlot.aspx');
			break;
		case 'metro':
			popupWindow('portfolio_details_metro.aspx');
			break;
		case 'murphys':
			popupWindow('portfolio_details_murphys.aspx');
			break;
		case 'cardinals':
			popupWindow('portfolio_details_cardinals.aspx');
			break;
	}
}

function popupWindow(win){
	
	newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
}
function show_div(divID,xcord,ycord) {
	if(!(divID == 'dtechad'))
	{
		document.getElementById(divID).style.top = ycord;
		document.getElementById(divID).style.left = xcord;
	}
	document.getElementById(divID).style.display = 'block';
}

function hide_div(divID) {
	document.getElementById(divID).style.display = 'none';
}