/** 
wt: width
dwt: desired width
**/
function w(wt,mwt){
	return (wt < mwt? "auto": mwt+'px' );
}

/** 
ht: height
dht: desired height
**/
function h(ht,mht){
	return (ht < mht? "auto": mht+'px' );
}
