function print(str)
{
	document.write(str);
}

function printStr(str)
{
    document.writeln(str);
}


