
<!--//

//-----------------------------------------------------------------------------------------//
function opencatalogue(cID,dID)
	{
	    var width = 700;
	    var height = 550;
		var winleft = (screen.width-width)/2; 
		var winUp = (screen.height-(height+110))/2;
		
		window.open("/Pages/CourseCatalogue.aspx?cid=" + cID + "&did=" + dID,"CourseCatalogue","width=" + width + ",height=" + height + ",scrollbars=no,resizable=no,top=50,left=100,left="+winleft+",top="+winUp)
	}
//-----------------------------------------------------------------------------------------//

function openalumnivideo(aVideo)
	{
	    var width = 450;
	    var height = 440;
		var winleft = (screen.width-width)/2; 
		var winUp = (screen.height-(height+110))/2;
	
        window.open("/alumni/videos/" + aVideo,"AlmniVideo","width=" + width + ",height=" + height + ",scrollbars=no,resizable=no,top=50,left=100,left="+winleft+",top="+winUp)
	}
//-----------------------------------------------------------------------------------------//

function openmonroetravel()
	{
	    var width = 420;
	    var height = 340;
		var winleft = (screen.width-width)/2; 
		var winUp = (screen.height-(height+110))/2;
	
        window.open("/Pages/TravelMonroe.aspx","MonroeTravel","width=" + width + ",height=" + height + ",scrollbars=no,resizable=no,top=50,left=100,left="+winleft+",top="+winUp)
	}
//-----------------------------------------------------------------------------------------//


//-->
