var myimages=new Array()
function preloadimages()
{
	for (i=0;i<preloadimages.arguments.length;i++)
		{
		myimages[i]=new Image()
		myimages[i].src=preloadimages.arguments[i]
		}
}

preloadimages("images/navButton_apply_opened.html", "images/navButton_students_opened.html", "images/navButton_diversity_opened.html", "images/navButton_working_opened.html", "images/navButton_tools_opened.html", "images/icon_navArrow1.html", "images/icon_navArrow2.html", "images/icon_navArrow3.html", "images/icon_navArrow4.html", "images/icon_navArrow5.html");

//Country Drop down function for campus events
function conutryID(x) 
{
location=('adminToold41d.html?' + x);
}

function homeDropDown(y) 
{
location=('indexd41d.html?' + y);
}

//Corner background image
function cornerImage(imageName, level1ID)
{
	if (imageName == "")
	{
		document.getElementById('contentContainer').style.backgroundImage = 'url(images/corner/default_' + level1ID + '.jpg)';
	}
	else
	{
		document.getElementById('contentContainer').style.backgroundImage = 'url(images/corner/' + imageName + '.jpg)';
	}

}

//Admin Delete Confirmation
function confirmation()
{
return confirm('Are you sure you want to delete?')
}

//New Window function
function newWindow(pageName, width, height, scrollbars, resizable)
{
window.open(pageName, "name", 'toolbar=no,status=no,scrollbars=' + scrollbars + ',resizable=' + resizable + ',location=no,menubar=no,directories=no,width=' + width + ',height=' + height + '')
} 
