// JavaScript Document
/*

Collection of Javascript snippets for the VIMM site

*/

function popitup(url) {
	screenW = screen.width;
	screenH = screen.height;
	screenH = screenH * 0.75;
	xPos = screenW - 715;
	if( xPos < 0 )
		{
		xPos = 0;
		}
	newwindow = window.open(url, "Figure", "height="+screenH+", width=815, left="+xPos+", top=0, toolbar=no, menubar=0, scrollbars=yes, resizable=1, location=0, directories=0, status=0");
	if (window.focus) {newwindow.focus()}
	return false;
}


function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
document.getElementById(d+'link').style.display = "block";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
document.getElementById(d+'link').style.display = "none";
}

