// Create three variables
var a,  b,  c;
// a function to display 3 arguments
function call_alert( str1, str2, str3 )
{
	a = str1;
	b = str2;
	c = str3;
	alert( a + b + c );
}
