Index: C:/WAMP/www/wpsvn/wp-includes/general-template.php
===================================================================
--- C:/WAMP/www/wpsvn/wp-includes/general-template.php	(revision 6192)
+++ C:/WAMP/www/wpsvn/wp-includes/general-template.php	(working copy)
@@ -159,7 +159,7 @@
 }
 
 
-function wp_title($sep = '&raquo;', $display = true) {
+function wp_title($sep = '&raquo;', $display = true, $seplocation = '') {
 	global $wpdb, $wp_locale, $wp_query;
 
 	$cat = get_query_var('cat');
@@ -237,7 +237,14 @@
 	if ( !empty($title) )
 		$prefix = " $sep ";
 
-	$title = $prefix . $title;
+ 	// Determines position of the separator
+	if ( $seplocation == "right" ) {
+		$title = $title . $prefix;
+	}
+	else {
+		$title = $prefix . $title;
+	}
+	
 	$title = apply_filters('wp_title', $title, $sep);
 
 	// Send it out
@@ -245,6 +252,7 @@
 		echo $title;
 	else
 		return $title;
+
 }
 
 

