function designSearchCategory ( category ) {

	document.form_designSearch.category.value = category;
	document.form_designSearch.pageNum.value = 1;
	document.form_designSearch.submit();

}


function deletePhoto ( photoID ) {

	document.form_photoList.st.value = "deletePhoto";
	document.form_photoList.photoID.value = photoID;
	document.form_photoList.submit();

}



function designListPageMove ( pn ) {

	document.form_designSearch.pageNum.value = pn;
	document.form_designSearch.submit();

}





