<!-- Display video success stories -->
function nextWindow(sRef) {
 var strUrl = '/solutions/success_stories/videos/Real/pickapp2.asp' + sRef;
 // alert(strUrl);
 var HelpPop = window.open(strUrl,"","height=320,width=280");
}
function helptext() {
  window.open('/solutions/success_stories/videos/help.asp','newwin','toolbar=no,location=no,scrollbars=no,width=560,height=320')
}

<!-- Update display for homepage tabs -->
function changeStyle(objectID,styleName,newVal) {
	var dom = findDOM(objectID,1);
	dom [styleName] = newVal;
}

<!-- Pulldown menu for hyperlinks -->
<!-- Original: Alex Tu <boudha1@hotmail.com> -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

<!-- Radiobuttons for hyperlinks or email links -->
<!-- Original:  Wayne Nolting (w.nolting@home.com) -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
function go(loc) {
window.location.href = loc;
}

<!-- Open stripped down window (small) -->
function openSmallWin(URL) {
aWindow = window.open(URL,"thewindow","width=80,height=200,toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no");
}

<!-- Open stripped down window (medium) -->
function openMediumWin(URL) {
aWindow = window.open(URL,"thewindow","width=350,height=250,toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no");
}

<!-- Open stripped down window (large) -->
function openLargeWin(URL) {
aWindow = window.open(URL,"thewindow","width=620,height=500,toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no");
}