	var BulletOnImage = new Image();
	var BulletOffImage = new Image();

function setPicky(imageName, image, imagePath)
{
	//if (image.src == '')
//	{
		image.src = imagePath;
//	}
	document.images[imageName].src = image.src;
}


function openAWindow(pageToLoad, winName, width, height, center, scroll)
{
    xposition=0; yposition=0;
    if ((parseInt(navigator.appVersion) >= 4 ) && (center)){
        xposition = (screen.width - width) / 2;
        yposition = (screen.height - height) / 2;
    }
    args = "width=" + width + "," 
    + "height=" + height + "," 
    + "location=0," 
    + "menubar=0,"
    + "resizable=1,"
    + "scrollbars="+scroll+", "
    + "status=0," 
    + "titlebar=0,"
    + "toolbar=0,"
    + "hotkeys=0,"
    + "screenx=" + xposition + ","  //NN Only
    + "screeny=" + yposition + ","  //NN Only
    + "left=" + xposition + ","     //IE Only
    + "top=" + yposition;           //IE Only

    window.open(pageToLoad,winName,args );
};


function finfo()
{
	openAWindow('http://www.moneymadeclear.fsa.gov.uk', '', 780, 500, true, 1);
}

function popFFN()
{
	openAWindow('buyonline2.html', 'FFN', 750, 450, 200, 1);
}

function popPinnacle01()
{
	openAWindow('http://www.pinnacle.co.uk/micro/cashplan/index.php?token=21746af7c95640a232f6c938bae1d75b', 'Pinnacle01', 750, 450, 200, 1);
}

function popPinnacle02()
{
	openAWindow('http://www.pinnacle.co.uk/micro/helpupay/index.php3?token=4ce247bcece25786bec03669f5afe3ae', 'Pinnacle02', 750, 450, 200, 1);
}



