﻿/**********************************/
/* Scripts for Shoppinglinx       */
/* Copyright © 2003 Access2.co.uk */
/**********************************/
var winOpen = false;


function sign(url)
{
winOpen = true;
popWin = window.open(url,"popWin","width=620,height=530");
}

function contact(url)
{
winOpen = true;
popWin = window.open(url,"popWin","width=600,height=430");
}

function demo(url)
{
window.open(url,"new");
}

function shopLogin()
{

shopName = document.form1.Shopname.value;
if((shopName=="") || (shopName=="Your shop name"))
  {
  document.form1.Shopname.select();
  document.form1.Shopname.focus();
  alert("Please enter the name of your shop before clicking Login");
  }
else top.location.href = "public/login.aspx?LoginShop=" + shopName;
}

function viewShop()
{
shopName = document.form1.Shopname.value;
if((shopName=="") || (shopName=="Your shop name"))
  {
  document.form1.Shopname.select();
  document.form1.Shopname.focus();
  alert("Please enter the name of your shop before clicking View Shop");
  }
else top.location.href = "public/login.aspx?ViewShop=" + shopName;
}

function LoginKeypress()
{
if (event.keyCode==13) shopLogin(); 
}