// JavaScript Document

function randImgLinks()
{
var pic = new Array();
pic[0] = "images/01.jpg";
pic[1] = "images/03.jpg";
pic[2] = "images/04.jpg";
pic[3] = "images/05.jpg";

var links = new Array();
links[0] = "archive-custom-plexiglass-furniture.html";
links[1] = "archive-custom-plexiglass-furniture.html";
links[2] = "archive-custom-plexiglass-furniture.html";
links[3] = "archive-custom-plexiglass-furniture.html";

random = Math.floor(Math.random() * pic.length);
document.getElementById('randImg').src = pic[random];
document.getElementById('randLink').href = links[random];
}

function popITup(url)
{
window.open(url,"_self");
}
