var x
var newwindow = ''
var photopic


function swap(targetId){
  
  if (document.getElementById)
        {
        target = document.getElementById(targetId);
        
            if (target.style.display == "none")
                {
                target.style.display = "";
                } 
            else 
                {
                target.style.display = "none";
                }
                
        }
}

function swapPhoto(photoSRC,theID,theCaption,theCredit) {

if (document.getElementById("caption")) {

	var theImage = document.getElementById("mainPhoto");
	var displayedCaption = document.getElementById("caption");
	var displayedCredit = document.getElementById("credit");
	var displayedID = document.getElementById("id");
	var imgFolder = "assets/";
	 
	displayedCaption.firstChild.nodeValue = theCaption;
	displayedCredit.firstChild.nodeValue = theCredit;
	displayedID.firstChild.nodeValue = theID;
	x =  theID;
	theImage.setAttribute("src", imgFolder+photoSRC);
	photopic = (imgFolder+photoSRC);
    }
 
  }
  
var winPop; 

function choices() 
{ 
  winPop=window.open("http://www.patchfloradesigns.co.uk/cgi-bin/reusableform.asp","OrderPopup","width=400,height=500");
  winPop.focus();
}

function passID() 
{ 
    location.href="cgi-bin/TestBasket.asp?ChoiceID="+x
}

function viewBasket()
{
location.href="cgi-bin/TestBasket.asp"
}

function bigpic(sPicURL) { 
     window.open( "BigPictureWindow.htm?"+sPicURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200"); 
   } 


