// JavaScript Document
var currentWindow;

function PreSubmit(frmName, act)
{
	document.forms[frmName].task.value = act;

	//alert(act);
	//alert(document.forms[frmName].task.value);

	document.forms[frmName].submit();
}

function AdminPopupEditor(frmName,pageName,act)
{
	//currentWindow = window.open("?page=adminpopup&action=hotdeal","popuphotdeal");
	document.forms[frmName].action = "?page=adminpopup&action=" + pageName;
	document.forms[frmName].task.value = act;	
	document.forms[frmName].target = pageName;
	document.forms[frmName].submit();
}

function RefeshParent()
{
	window.opener.parent.location = window.opener.parent.location;
	window.close();
}

function ChangeImage(imgId,imgUrl)
{
	document.getElementById(imgId).src = imgUrl;
}


function ChangeTitle(inputId, objSelect)
{
	title = objSelect[objSelect.selectedIndex].text;
	document.getElementById(inputId).value = title;
}
