// JavaScript Document
/*

Collection of Javascript snippets for the NeuroGLIA 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 popmovie(url,Mwidth,Mheight) {
	screenW = screen.width;
	screenH = screen.height;
	screenH = screenH * 0.75;
	xPos = screenW - Mwidth;
	if( xPos < 0 )
		{
		xPos = 0;
		}
	newwindow = window.open(url, "Figure", "height="+Mheight+", width="+Mwidth+", 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;
}
