/**
 * JavaScript - Funktionen - EasyWareComputer
 *
 * Autor: Manuel Pfister (manuel.pfister@ewc-web.de)
 * Datum: 16.11.2007
 * Webdesign: EasyWareComputer
 */

function ChangeLocation(strUrl) {
   window.location = strUrl;   
}

function SubmitForm() {
   window.document.forms[0].submit();
}

function OpenInfoWindow(url, title, width, height) {
   window.open(url, title, "width="+width+",height="+height+",scrollbars=no");
}
