var currentURL = String(window.location);







function getPage(theLink) {

	var folderPath = currentURL.substr(0, currentURL.lastIndexOf("/")+1);

	window.location = folderPath + theLink;

}







function openWin(theLink) {

	var folderPath = currentURL.substr(0, currentURL.lastIndexOf("/")+1);

	window.open (folderPath + theLink, "mywindow", "menubar=1,resizable=1,scrollbars=1,width=350,height=250");

}