// JavaScript Document
function popup(path, width, height)
{
	window.open(''+path+'','','statusbar=0,toolbar=0,location=0,menuBar=0,scrollbars=0,resizable=1,width='+width+',height='+height+',left=0,top=0');
}


function cardForm(par) {
	if (par=='simple') {
	    $('regForm').style.display='none';
		if ($('simpleSendForm').style.display=='block') {
			$('simpleSendForm').style.display='none';}
			else {
				$('simpleSendForm').style.display='block';}
	}

	if (par=='reg') {
		$('simpleSendForm').style.display='none';
		if ($('regForm').style.display=='block') {
			$('regForm').style.display='none';}
			else {
				$('regForm').style.display='block';}
	}


}