<!-- 
function showBiggerCard(theCardID) {
var load = window.open('/biggerCard.aspx?id='+theCardID,'','scrollbars=auto,menubar=no,height=390,width=570,resizable=no,toolbar=no,location=no,status=no');
}
function removeDefaultText(theTextBoxID, theText, isMultiLine) {
	if (isMultiLine) {
		if (Left(document.getElementById(theTextBoxID).value, theText.length) == theText) {
			document.getElementById(theTextBoxID).value = "";
		}
	} else {
		if (document.getElementById(theTextBoxID).value == theText) {
			document.getElementById(theTextBoxID).value = "";
		}
	}
	//alert(document.getElementByID('0-1').value);
}
function Left(str, n){
	if (n <= 0)
	    return "";
	else if (n > String(str).length)
	    return str;
	else
	    return String(str).substring(0,n);
}
// -->

