

function submitform()
{
  alert("We have moved to www.buy-pharma.com. For existing customers, your account is over there.");
return true;
  }

 function openWin(url, id, width, height, scrollbar, focused) {

	if (height > screen.height-80) {
		ts = 0;
		height = screen.height - 80;
	} else {
		ts = Math.round((screen.height-height)/2-50);
	}
	ls = Math.round((screen.width-width)/2);
	params = "width="+width+",height="+height+",top="+ts+",left="+ls+",status=no,toolbar=no,menubar=no,resizable=yes,scrollbars="+scrollbar;
	var my_win = window.open(url, id, params);
	if (my_win.opener == null) my_win.opener = self;
	if (focused!=0)
		my_win.focus();
	return my_win;
}

