﻿
function goToPage(pageUrl) {
    window.location.href = pageUrl;
}

 function newWindow(filename){
		newwindow=window.open(filename,"newwin","");
		newwindow.focus();
 }
  function popupMediaWindow(filename){
			popup=window.open(filename,"popupwin","left=100,top=100,height=380,width=440,status=no,toolbar=no,directories=no,menubar=no,scrollbars=no,location=no");
			popup.focus();
 }
