//function to open guides in a different window.
/*
URL - URL to open
Win - Name of the new window
*/
function openGuides(URL,Win) {
	window.open(URL,Win);
	return;
}