﻿function RemoveText(id)
{
	document.getElementById(id).value = "";
}

function RemoveAndLeftAlignText(id) {
	id.value = "";
	id.style.textAlign = "left";
}

function ClearText(ID, Text)
{
    if(ID.value == Text)
	    ID.value = "";
}

function popup(DN)
{
	LeftPosition = (screen.width) ? (screen.width - 400) / 2 : 0;
	TopPosition = (screen.height) ? (screen.height - 250) / 2 : 0;
	settings = 'height=' + 250 + ',width=' + 400 + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + scroll + ',resizable';
	window.open('/default.aspx?dn='+DN,'popupwindow', settings);
}

//function toggleCheck(elementID, checkboxID){
//		
//	var obj = document.getElementById(elementID);
//	var cb =document.getElementById(checkboxID);
//	var checked = ' -49px';
//	var unchecked = ' 0px';

//	if(cb.checked){
//		obj.style.backgroundPosition = "0px"+unchecked;
//		cb.checked=false;
//	} else {
//		obj.style.backgroundPosition = "0px"+checked;
//		cb.checked=true;
//	}
//	eval(cbPostBack);
//}