function showURL(strURL, strTarget) {
	if ((strTarget == "_top") && (strURL != "")) {
		top.location = strURL;
	}
	else {
		if ((strTarget == "gipcontent") && (strURL != "")) {
			top.frames['gipcontent'].location = strURL;
		}
	}
}
