// JavaScript Document

function changeBG(a,color){
document.getElementById(a).style.background=color;
}
function linkURL(url){
window.location=url;
}
function openPopup(){
	document.open("promotion.htm","","scrollbars=no,status=no,menubar=no,toolbar=no,resizeable=no,width=700,height=515");
}
