var windowObjectReference;
//var settings ="navigation=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes";
var settings = "menubar, toolbar, location, directories, status, scrollbars, resizable, dependent";

function openInNewWindow( url ){
	if( url.indexOf('vishay')!= -1){
		windowObjectReference = window.open( url , "vsh_new_window", settings );
	}else{
		windowObjectReference = window.open( url , "vsh_new_window", settings );
	}	
}
