
function is_loaded() { //DOM
if (document.getElementById){
document.getElementById('preloader').style.visibility='hidden';
}else{
if (document.layers){ //NS4
document.preloader.visibility = 'hidden';
}
else { //IE4
document.all.preloader.style.visibility = 'hidden';
}
}
}

   
  

	var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=275,width=250,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
	