var data;

// ------------------------------------------------------------

function TestMe() {

	alert("JavaScripts Reading OK");

}

// ------------------------------------------------------------

function SwapImg(data) {

	var imgsrc = document[data].src + "";

	if (imgsrc.indexOf(".up.") > 1) {
	
		imgsrc = imgsrc.replace(".up.", ".over.");
	
	} else {
	
		imgsrc = imgsrc.replace(".over.", ".up.");
	
	}
	
	document[data].src = imgsrc;

}

// ------------------------------------------------------------

function PopUp(data) {

	var DataSplit, PopType, PopID;

	DataSplit = data.split("||");
	PopType = DataSplit[0];
	PopID = DataSplit[1];
	
	//alert(PopType);
	//alert(CaseID);
	
	var PopAddress = "popup.asp?pid=" + PopType + "&sid=" + PopID;
	
	window.open (PopAddress, "popup", 'width=600, height=600, scrollbars=yes, resizable=yes, status=no, location=no'); 
	
	//return false;

}
