/*
 *	Common Javascript Functions
 *		(all those functions that
 *		need to be accessed universally)
 *
 */


function viewArticle( articleLoc ) {
	//window.open( articleLoc, "aggiesatArticle", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=650" );
	popIn( articleLoc, 500, 500 );
}

function playVideo( videoLoc, w, h ) {
	//window.open( "video.php?v=" + videoLoc + "&w=" + w + "&h=" + h, "aggiesatVideo", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + w + ",height=" + (h+20) + "" );
	popIn( "./video.php?v=../videos/" + videoLoc + "&w=" + w + "&h=" + h, w, h+20 );
}
