function go_to(vUrl) {
	window.location	=	vUrl;	
}

function inner_html(id, data) {
	document.getElementById(id).innerHTML = data;	
}

function get_inner_html(id) {
	data = document.getElementById(id).innerHTML;
	return data;
}

function get_value(id, uri) {
	data	=	document.getElementById(id).value;	
	return data
}

function set_value(id, data) {
	document.getElementById(id).value = data;
}

function get_check(id) {
	data	=	document.getElementById(id).checked;
	return data
}

function get_height(id) {
	myHeight	=	document.getElementById(id).offsetHeight;
	return myHeight;
}

function get_width(id) {
	myHeight	=	document.getElementById(id).offsetWidth;
	return myHeight;
}

function set_height(id, myHeight) {
	document.getElementById(id).style.height = myHeight+'px';
}

function set_width(id, myWidth) {
	document.getElementById(id).style.width = myWidth+'px';
}

function display(id, value) {	
	document.getElementById(id).style.display = value;
}

function get_screen(coordinate) {
	if(coordinate == 'x') {
		data = window.screen.width;
		return data
	}
	
	else if(coordinate == 'y') {
		data = window.screen.height;
		return data
	}
	
	else {
		alert("Alert From js_function.js - unknown coordinate : "+coordinate);
	}
}




