function Point(x , y)
{
	this.x = parseInt( x );
	this.y = parseInt( y );	
	this.toString = Point_toString;
}

function Point_toString()
{
	return ("A point object = ( " + this.x + " , " + this.y + " )");
}