// JavaScript Document
function openWindow(window_type){

	var filename;
	var attributes;
	
	//For Additional Pop-up Windows, set new window_type option, filename and window attributes. 
	switch (window_type){
		case "1": //Learn More button
			filename = "learn-more.asp";
			attributes = "width=600, height=330, scrollbars=0, menubar=0, resizable=0,top=200, left=200";
			break;
		case "2": //WEBCIC-WEBAIC
			filename = "filename.asp";
			attributes = "width=800, height=600, scrollbars=1, menubar=1, resizable=1";
			break;
		case "3": //COMODO
			filename = "comodo.asp";
			attributes = "width=300, height=180, scrollbars=0, menubar=0, resizable=0,top=200, left=300";
			break;
		
		case "4": //CAREERS
			filename = "careers-UnderCon.asp";
			attributes = "width=450, height=300, scrollbars=0, menubar=0, resizable=0,top=200, left=300";
			break;
		
		case "5": //FUND HISTORY
			filename = "fund-history.asp";
			attributes = "width=600, height=630, scrollbars=1, menubar=0, resizable=1,top=200, left=300";
			break;
	}

	window.open(filename, 'subwin', attributes);
	
}
