function getWindowTitle(url)
{
	if(url!=""){	
	var t = "WinT"+url.replace(/\//g,"_"); /* replace all "/" with "_" */
	var winName = t.replace(/./g,"_"); /* replace all "." with "_" */ 
	return winName;}	
}

// Start oppupgeneric
function popupgeneric(url,type, width, height, toolbar, status, location, menubar, scrollbar, resizable){
var wint = getWindowTitle(url);
if (type == "POPUP")
{
	winPopup = window.open(url, wint,"width="+width+",height="+height+",left=100,top=100,screenX=100,screenY=100,toolbar="+toolbar+",status="+status+",location="+location+",menubar="+menubar+",scrollbars="+scrollbar+",resizable="+resizable);	
	winPopup.focus();
}

if (type == "SLIDESHOW")
{		
		winSlideshow = window.open (url,wint, "toolbar=no,width="+width+",height="+height+",scrollbars=no,statusbar=no,resize=no,menubar=no");	
		winSlideshow.focus();
}

if (type == "MP3")
{	
	winMP3 = window.open (url,wint, "toolbar=no,width="+width+",height="+height+",scrollbars=no,status=no,resize=no,menubar=no");
	winMP3.focus();		
}

if (type == "AUDIO")
{	
	winAudio = window.open (url,wint, "toolbar=no,width="+width+",height="+height+",scrollbars=no,status=no,resize=no,menubar=no");
	winAudio.focus();	
}

if (type == "VIDEO")
{	
	winVideo = window.open (url,wint, "toolbar=no,width="+width+",height="+height+",scrollbars=no,status=no,resize=no,menubar=no");
	winVideo.focus();		
}

if (type == "CASESTUDY")
{	
	winCasestudy = window.open(url, wint,"width="+width+",height="+height+",left=100,top=20,screenX=100,screenY=20,toolbar=no,status=yes,location=no,menubar=no,scrollbars=yes,resizable");
	winCasestudy.focus();	
}

if (type == "PRINTERFRIENDLY")
{	
	newWindow = window.open(url, wint,"width="+width+",height="+height+",left=100,top=100,screenX=100,screenY=100,toolbar=no,status=no,location=no,menubar=yes,scrollbars=yes,resizable=no");
	newWindow.focus();	
}

if (type == "PRINTERFRIENDLYKEYDATES")
{	
	winKD = window.open(url, wint,"width="+width+",height="+height+",left=100,top=100,screenX=100,screenY=100,toolbar=no,status=no,location=no,menubar=yes,scrollbars=yes,resizable=no");
	winKD.focus();	
}

if (type == "EMAILTOCOLLEAGUE")
{	
	winEmailtocollegue = window.open(url, wint,"width="+width+",height="+height+",left=100,top=100,screenX=100,screenY=100,toolbar=no,status=no,location=no,menubar=yes,scrollbars=yes,resizable");
	winEmailtocollegue.focus();	
}

if (type == "OTHERS")
{	
	winOthers = window.open(url, wint,"width="+width+",height="+height+",left=100,top=100,screenX=100,screenY=100,toolbar="+toolbar+",status="+status+",location="+location+",menubar="+menubar+",scrollbars="+scrollbar+",resizable="+resizable);
	winOthers.focus();	
}

if (type == "OFFICESEARCH")
{	
	winOthers = window.open(url, wint,"width="+width+",height="+height+",left=0,top=0,screenX=0,screenY=0,toolbar="+toolbar+",status="+status+",location="+location+",menubar="+menubar+",scrollbars="+scrollbar+",resizable="+resizable);
	winOthers.focus();	
}

if (type == "SLIDESHOWPAGE")
{		
		winSlideshow = window.open (url,wint, "toolbar=no,width="+width+",height="+height+",scrollbars="+scrollbar+",statusbar=no,menubar=no,resizable="+resizable);		
		winSlideshow.focus();
}

if (type == "MP3PAGE")
{	
	winMP3 = window.open (url,wint, "toolbar=no,width="+width+",height="+height+",scrollbars="+scrollbar+",status=no,menubar=no,resizable="+resizable);	
	winMP3.focus();		
}

}

//End popupgeneric


function popup(url,type)
{
//syntax  - popupgeneric(url,type, width, height, toolbar, status, location, menubar, scrollbar, resizable)
if (type == "POPUP")
{
	popupgeneric(url,'POPUP','660','500','no','no','no','yes','yes','yes')
}
if (type == "SLIDESHOW")
{	
	popupgeneric(url,'SLIDESHOW','200','200','no','no','no','no','no','no');	
}
if (type == "MP3")
{
	popupgeneric(url,'MP3','339','224','no','no','no','no','no','no');
}
if (type == "AUDIO")
{
	popupgeneric(url,'AUDIO','339','213','no','no','no','no','no','no');
}
if (type == "VIDEO")
{	
	popupgeneric(url,'VIDEO','339','213','no','no','no','no','no','no');
}
if (type == "CASESTUDY")
{
	popupgeneric(url,'CASESTUDY','680','600','no','no','no','no','no','no');
}
if (type == "PRINTERFRIENDLY")
{
	popupgeneric(url,'PRINTERFRIENDLY','577','500','no','no','no','yes','yes','no');
}
if (type == "PRINTERFRIENDLYKEYDATES")
{
	popupgeneric(url,'PRINTERFRIENDLYKEYDATES','510','400','no','no','no','yes','no','no');
}
if (type == "EMAILTOCOLLEAGUE")
{
	popupgeneric(url,'EMAILTOCOLLEAGUE','660','500','no','no','no','yes','yes','yes');
}
}



	
