NewWindow = null;

function popUpSchrijfIn(id,lang) {
	page= 'http://www.alexvangroningen.nl/popup.php?p=schrijfin&groep='+id+'&language='+lang;
	
	x= 710;
	y= 525;
	
	if (NewWindow) NewWindow.close();
	NewWindow = window.open(page, "displayWindow", "width="+x+",height="+y+",top="+(screen.availHeight/2 - y/2)+",left="+(screen.availWidth/2 - x/2)+"status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=no");
}

function popUp(mag) {
	/*x=width;
	y=height;
	if (NewWindow) NewWindow.close();
	NewWindow = window.open(page, "displayWindow", "width="+x+",height="+y+",top="+(screen.availHeight/2 - y/2)+",left="+(screen.availWidth/2 - x/2)+"status=no,toolbar=no,menubar=no,scrollbars="+ scroll +",location=no,resizable="+ resize +"");
	*/
	page= 'http://www.financieel-management.nl/magazines/abonneren_popup/'+mag;
	
	x= 550;
	y= 600;
	
	if (NewWindow) NewWindow.close();
	NewWindow = window.open(page, "displayWindow", "width="+x+",height="+y+",top="+(screen.availHeight/2 - y/2)+",left="+(screen.availWidth/2 - x/2)+"status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=no");
}

function hideEdit(id) {
	new Effect.Fade(document.getElementById('edit_'+id),{duration:0.5});
}

function hideDelete(id) {
	new Effect.Fade(document.getElementById('delete_'+id),{duration:0.5});
}

function hideAdd(id) {
	new Effect.Fade(document.getElementById('add_sponsor_'+id),{duration:0.5});
}

function showEdit(id) {
	var showId= 'edit_'+id;
	var hideId= 'delete_'+id;
	new Effect.Fade(document.getElementById(hideId),{duration:0.1});
	new Effect.Appear(document.getElementById(showId),{duration:0.5});
}

function showDelete(id) {
	var showId= 'delete_'+id;
	var hideId= 'edit_'+id;
	new Effect.Fade(document.getElementById(hideId),{duration:0.1});
	new Effect.Appear(document.getElementById(showId),{duration:0.5});
}

function showAdd(id) {
	new Effect.Appear(document.getElementById('add_sponsor_'+id),{duration:0.5});
}
