﻿//<!-- ******************** goto_url script ************************** -->

function goto_url(url) 
	{//v1.0
		window.location.assign(url);
	}

//<!-- ******************** goto_url script ************************** -->

function new_window(url) 
	{//v1.0
		window.open(url,'_blank','','');
	}

//<!-- ******************** popup scripts ************************** -->

function FP_popUpMsg(msg) {//v1.0
 alert(msg);
}

function show_popup(msg)
{
var p=window.createPopup()
var pbody=p.document.body
pbody.style.backgroundColor="lime"
pbody.style.border="solid black 1px"
pbody.innerHTML=(msg)
p.show(150,150,200,50,document.body)
}


//<!-- ******************** open a window ************************** -->

function print_label()
{
Window=window.open("http://www.bertramdental.com/shipping/accept.php");
}

//<!-- ******************** close a window ************************** -->

function closeWin()
{
Window.close();
}

//<!-- ******************** run php program ************************** -->

function process(url)
{
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById('insert_code').innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET",url,true);
xmlhttp.send();
}

//<!-- ******************** close a window ************************** -->

//function Uppercase()
//{
//var x=document.getElementById("fname").value;
//document.getElementById("fname").value=x.toUpperCase();
//}
//</script>

