function AdjustHeight(target,h) {

	if (navigator.appName.indexOf("Microsoft") != -1) {
        window[target].height = h;
    } else {
       document[target].height = h;
    }
	
}
function AdjustWidth(target,w) {

	if (navigator.appName.indexOf("Microsoft") != -1) {
        window[target].width = w;
    } else {
       document[target].width = w;
    }
}
