// Common JS functions

//open new window
function wopen(width, height, url, windowName, dependent){
	newWindow = window.open(url, windowName, "width="+width+",height="+height+",dependent="+dependent+"" );
  	newWindow.focus();
}
