function getQueryVariable(variable) { 
  var query = window.location.search.substring(1); 
  var vars = query.split("?"); 
  for (var i=0;i<vars.length;i++) { 
    var pair = vars[i].split("="); 
    if (pair[0] == variable) { 
      return pair[1]; 
    } 
  } 
} 


if ( getQueryVariable("p") == "yes" )
	{
		document.write("<link rel='STYLESHEET' type='text/css' href='http://www.ti.com/corp/docs/investor/includes/print.css'>");
		window.print();
	}
	else
	{
		document.write("<link rel='STYLESHEET' type='text/css' href='http://www.ti.com/corp/docs/investor/includes/screen.css'>")
	}


function ti_popup(url,x,y) {
  if(navigator.userAgent.indexOf("MSIE") == -1) {
    newwindow = window.open(url,'sh_pop','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+x+',height='+y);
    newwindow.focus();} 
  else { 
    newwindow = window.open(url,'sh_pop','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+x+',height='+y);}
}
