<!--

// function used for opening new windows
function openWindow( src, name, width, height, scrollbar,menu,resize,toolbarz ) {
   var new_window = window.open( src, name, 'width='+ width +',height='+ 
                    height+',scrollbars=' + scrollbar +',menubar=' + menu+',resizable=' + resize +',toolbar=' + toolbarz );
   new_window.focus();
}

function PopCameraWin(src){

	var CAMWin = window.open( src, "RWISCamWin", 'toolbar=no,width='+ width +',height='+ height+',scrollbars=' + scrollbar +',menubar=' + menu+',resizable=' + resize );
   	CAMWin.focus();


}


//-->
