function preloadImages(urls) {
  var img = new Array();
  for (var i=0; i<urls.length; i++) {
    img[img.length] = new Image();
    img[img.length - 1].src = urls[i];
  }
}

function PreparePage() {
 var img = new Array(
    "./img/home.png",
	"./img/home_selected.png",
	"./img/capabilities.png",
	"./img/capabilities_selected.png",
	"./img/company.png",
	"./img/company_selected.png",
	"./img/contactus.png",
	"./img/contactus_selected.png",
	"./img/employment.png",
	"./img/employment_selected.png",
	"./img/faq.png",
	"./img/faq_selected.png",
	"./img/whatsnew.png",
	"./img/whatsnew_selected.png",
    "./img/button2.png",
    "./img/button2_selected.png",
    "./img/contentbgd.png");
  preloadImages(img);
}


var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'Octochem','height=700,width=900');
	if (window.focus) {newwindow.focus()}

}

function poptastic2(url)
{
	newwindow=window.open(url,'Location','height=550,width=580');
	if (window.focus) {newwindow.focus()}

}
