// OpenIpixWindow()
var wini = null;
function OpenIpixWindow(ipix_string)
{
		h = 400;
		w = 500;
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		settings =  'height='+ h +',width='+ w +',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable';
		wini = window.open('/ipix-video/ipix_win.asp?ipix_str=' + ipix_string,'IPIX',settings);
}

// OpenVideoWindow()
var wini = null;
function OpenVideoWindow(video_string, iheight, iwidth)
{
		h = iheight;
		w = iwidth;
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		settings =  'height='+ h +',width='+ w +',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable';
		winj = window.open('/ipix-video/video_win.asp?video_str=' + video_string,'VIDEO',settings);
}