var splashWin, ontopIntervalHandle;

function launchSplashWin(contentType, contentString, width, height, left, top) {

	var w = window.screen.width;
	var h = window.screen.height;
	var l = (left != null) ? left : (w-width)/2;
	var t = (top != null) ? top : (h-height)/2;
	
	var uri = (contentType.toLowerCase() == "uri") ? contentString : "";
	
	splashWin = window.open(uri, '_splash', 'fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0' );


	
	splashWin.resizeTo(width,height);
	splashWin.moveTo(l, t);

	
}