// page.php?deck= javascript

function showProfile(id)
{
	var url = 'http://www.daigotsu.com/page.php?deck=profile&id='+id;
	window.open(url,'deckprofile', 'width=750, height=750, resizable=1, scrollable=1');
}

function toggleChecked(oElement) 
{ 
	bChecked = oElement[0].checked; 

	for(i = 1; i < oElement.length; i++) 
      oElement[i].checked = bChecked; 
} 

function showCardProfile(id)
{
	var url	= "http://www.daigotsu.com/page.php?card=profile&id="+id;
	window.open(url, "", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=700, height=700");
}

function goEditDeck(deck_id)
{
	document.deckverfication.action = "page.php?deck=edit";
	document.deckverfication.submit();
}

// page.php?card= javascript

function funcSearchCards(){
	document.frmSearchCards.submit();
}
function funcReturnPage() {
	window.location = "page.php?card=search";
}