// General Popup
function openFlashWin(theURL,winName,features) {
window.open(theURL,winName,features);
}
// Preview page
function popwin(url) {
win = window.open(url, window, width=600,height=450, scrollbars=yes);
win.focus();
}
//VIP popup
function popwin2(url) {
win = window.open(url,'window','width=400,height=420');
win.focus();
}
//Script the opening-closing boxes
function ne(el) {
var e = document.getElementById(el);
if (e.style.display=='none')
e.style.display='';
else
e.style.display='none';
}
// Slider Popup
function runFlash(){
document.getElementById('flashPopup').innerHTML =
// '';
'';
}
// Preload media in body
function simplePreload() {
var args = simplePreload.arguments;
document.imageArray = new Array(args.length);
for(var i=0; i