/*********************************/
/* codesign 2004                 */
/*   Sitewide JavaScripts        */
/*   Sidste ændring: 16/9-04     */
/*   (c) Represent.dk            */
/*   (c) CosyCorners.dk          */
/*********************************/

var ccwindow = 1337; //Vi bruger altid dette vindue id til at åbne i, så vi ikke fylder taskbaren

function toggle(object) {
	if (document.getElementById(object).style.visibility == 'hidden') {
		document.getElementById(object).style.visibility = 'visible'
		document.getElementById(object).style.display = 'block';	
	} else {
		document.getElementById(object).style.visibility = 'hidden'
		document.getElementById(object).style.display = 'none';
	}
}

function imageopen(imageid){
	if((window.location.href.indexOf('/admin/') > -1) || (window.location.href.indexOf('/admin2/') > -1)) var link = '../image_view.php?nocount=1&id=' + imageid;
	else var link = 'image_view.php?id=' + imageid;
	width = 1;
	height = 1;
	var setup = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height;
	var imageWindow = window.open(link, ccwindow, setup);
	imageWindow.focus();
}

function mailform(memberid){
	var link = 'band_mail.php?id=' + memberid;
	width = 400;
	height = 300;
	var setup = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height;
	var mailWindow = window.open(link, ccwindow, setup);
	mailWindow.focus();
}
