// rotating images
var theImages = new Array();

theImages[0] = 'st4w_welcPage.jpg';
theImages[1] = 's4w_hom1.jpg';
theImages[2] = 's4w_hom2.jpg';
theImages[3] = 's4w_hom3.jpg';

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="/live/uhc_com/Assets/Graphics/'+theImages[whichImage]+'" height="116" width="172" alt="Source4Women">');
}

function openOlivia() {
	var xpos=(screen.width-454)/2;
	var ypos=(screen.height-255)/2 - 100;
	var url="/live/uhc_com/Assets/Documents/s4w_OliviaNewtonJohn.html";
	var winOption="menubar=no,toolbar=no,scrollbars=no,resizable=no,location=no,width=454,height=255,top=" + ypos + ",left=" + xpos;
	var popupWin=window.open(url,"",winOption);
	popupWin.focus();
	}
function openOz(nam) {
	var xpos=(screen.width-720)/2;
	var ypos=(screen.height-520)/2;
	var url="/live/uhc_com/Assets/Documents/" + nam + ".html";
	var winOption="menubar=no,toolbar=no,scrollbars=no,resizable=no,location=no,width=720,height=490,top=" + ypos + ",left=" + xpos;
	var popupWin=window.open(url,"",winOption);
	popupWin.focus(); }
