﻿
function hpeclipsplay(id)
{
    document.getElementById('hpplayer').src = '/e-clips/vp/vp-hp.aspx?id=' + id;
}


function openNewWin(page,name,w,h,scroll)
{
    var winl = (screen.width-w)/2;
    var wint = (screen.height-h)/2;
    settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no'
    win=window.open(page,name,settings)
    if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
    //Reload the current page after opening the new window
    //window.location.reload();
}


function search()
{
    var searchField = document.forms["searchform"].searchfield.value;
    var searchString = document.forms["searchform"].searchstring.value;
    window.location = "/search/" + searchField + "/?q=" + searchString;
}

