//OPEN POP-UP WINDOWS

function openPopUp (pageId) {

var url;
var specs;
var width;
var height;
var scr;
var winName = pageId;

if (pageId=='email'){
   scr='0';
   width='400';
   height='270';
   url='popups/reminder_email.html';
   }

if (pageId=='ecards') {
   scr='0';
   width='724';
   height='540';
   url='http://aetn.waidev5.com/affiliates_ecard/staging/hippies/66/create_card.htm';
   }

if (pageId=='quiz') {
   scr='0';
   width='744';
   height='377';
   url='http://aetn.waidev5.com/quiz_engine/staging/hippies/39/index.htm';
   }

specs = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=' + scr + ',resizable=0,width=' + width + ',height=' + height;
window.open(url, winName, specs);

}

//DOWNLOAD A SCREENSAVER

function openScreensaver (idNum, os) {

var url;
var suffix;

if (os=='win') {
	suffix='.zip';
	} else if (os=='mac') {
	suffix='.zip';
	}

url = '../../screensawers/HippiesScreenSaver_'+os+'_'+idNum+suffix;

self.location = url;

}

//OPEN DESKTOP WALLPAPER JPEG

function openWallpaper (idNum, size) {

var url;
var specs;
var width;
var height;
var scr;
var winName = 'wallpaper'+'_'+idNum+'_'+size;

if (size=='1024') {
		width='1044';
		height='788';
   } else if (size=='800') {
	   	width='830';
		height='630';
   }

//url= 'files/wallpaper_'+idNum+'_'+size+'.html';
url= 'files/wallpaper_'+idNum+'_'+size+'.jpg';
specs = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + width + ',height=' + height;
window.open(url, winName, specs);

}
